/* style/responsible-gambling.css */

/* Base styling for the responsible gambling page */
.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.page-responsible-gambling__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-responsible-gambling__hero {
    background: linear-gradient(135deg, #0A2463, #3A5B8F);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E3B505;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__hero-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-responsible-gambling__hero-description a {
    color: #E3B505;
    text-decoration: underline;
    font-weight: bold;
}

.page-responsible-gambling__hero-description a:hover {
    color: #fff;
}

.page-responsible-gambling__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-responsible-gambling__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-responsible-gambling__section--dark {
    background-color: #f0f4f8;
    color: #222;
}

.page-responsible-gambling__section-title {
    font-size: 2.2em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-responsible-gambling__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E3B505;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-responsible-gambling__sub-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.page-responsible-gambling__text {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.page-responsible-gambling__text a {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling__text a:hover {
    text-decoration: underline;
    color: #E3B505;
}

/* Features Grid (Self-Limiting Tools) */
.page-responsible-gambling__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-responsible-gambling__feature-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-responsible-gambling__feature-description {
    font-size: 0.95em;
    color: #555;
    line-height: 1.7;
}

.page-responsible-gambling__feature-description a {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling__feature-description a:hover {
    text-decoration: underline;
    color: #E3B505;
}

/* Content Row for layout */
.page-responsible-gambling__content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-responsible-gambling__content-row--reverse {
    flex-direction: row-reverse;
}

.page-responsible-gambling__content-col {
    flex: 1;
    min-width: 300px;
}

.page-responsible-gambling__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling__image--center {
    display: block;
    margin: 40px auto 20px auto;
}

/* Lists */
.page-responsible-gambling__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-responsible-gambling__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-responsible-gambling__list li a {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling__list li a:hover {
    text-decoration: underline;
    color: #E3B505;
}

/* Buttons */
.page-responsible-gambling__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-responsible-gambling__button--primary {
    background-color: #E3B505;
    color: #0A2463;
    border-color: #E3B505;
}

.page-responsible-gambling__button--primary:hover {
    background-color: #ffc926;
    border-color: #ffc926;
    color: #0A2463;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__button--secondary {
    background-color: transparent;
    color: #0A2463;
    border-color: #0A2463;
    margin-left: 20px;
}

.page-responsible-gambling__button--secondary:hover {
    background-color: #0A2463;
    color: #E3B505;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__cta-group {
    text-align: center;
    margin-top: 40px;
}

/* Tips List */
.page-responsible-gambling__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-responsible-gambling__tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling__tip-icon {
    font-size: 1.5em;
    color: #E3B505;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-responsible-gambling__tip-text {
    font-size: 1.05em;
    color: #444;
    margin: 0;
}

.page-responsible-gambling__tip-text a {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling__tip-text a:hover {
    text-decoration: underline;
    color: #E3B505;
}

/* CTA Section */
.page-responsible-gambling__cta-section {
    background: linear-gradient(45deg, #0A2463, #0A2463 60%, #E3B505);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-responsible-gambling__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__cta-description {
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-responsible-gambling__cta-description a {
    color: #E3B505;
    text-decoration: underline;
    font-weight: bold;
}

.page-responsible-gambling__cta-description a:hover {
    color: #fff;
}

.page-responsible-gambling__button--hero {
    background-color: #E3B505;
    color: #0A2463;
    border-color: #E3B505;
    padding: 16px 32px;
    font-size: 1.2em;
    margin: 0 10px;
}

.page-responsible-gambling__button--hero:hover {
    background-color: #ffc926;
    border-color: #ffc926;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__button--hero-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    padding: 16px 32px;
    font-size: 1.2em;
    margin: 0 10px;
}

.page-responsible-gambling__button--hero-secondary:hover {
    background-color: #ffffff;
    color: #0A2463;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* FAQ Section */
.page-responsible-gambling__faq {
    margin-top: 40px;
}

.page-responsible-gambling__faq-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-responsible-gambling__faq-question a {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling__faq-question a:hover {
    text-decoration: underline;
    color: #E3B505;
}

.page-responsible-gambling__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #E3B505;
    transition: transform 0.3s ease;
}