/* style/responsible-gaming-minor-protection.css */
.page-responsible-gaming-minor-protection {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text color for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-responsible-gaming-minor-protection__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A202C 0%, #303a4b 100%); /* Darker gradient for hero */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-responsible-gaming-minor-protection__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-responsible-gaming-minor-protection__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-responsible-gaming-minor-protection__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-responsible-gaming-minor-protection__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    font-weight: bold;
}

.page-responsible-gaming-minor-protection__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #d4d4d4;
}

.page-responsible-gaming-minor-protection__section {
    padding: 60px 20px;
    background-color: #1A202C;
    color: #e5dfd3;
}

.page-responsible-gaming-minor-protection__section--alt {
    background-color: #2a3342;
}

.page-responsible-gaming-minor-protection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-responsible-gaming-minor-protection__heading {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-responsible-gaming-minor-protection__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-responsible-gaming-minor-protection__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-responsible-gaming-minor-protection__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gaming-minor-protection__feature-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gaming-minor-protection__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-responsible-gaming-minor-protection__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-responsible-gaming-minor-protection__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-responsible-gaming-minor-protection__feature-description {
    font-size: 1em;
    color: #c0c0c0;
}

.page-responsible-gaming-minor-protection__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #e5dfd3;
}

.page-responsible-gaming-minor-protection__list li {
    margin-bottom: 10px;
}

.page-responsible-gaming-minor-protection__list-strong {
    color: #FFD700;
}

.page-responsible-gaming-minor-protection__image-full-width {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gaming-minor-protection__image-center {
    display: block;
    margin: 40px auto;
    width: 100px;
    height: 100px;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-responsible-gaming-minor-protection__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #e5dfd3;
}

.page-responsible-gaming-minor-protection__contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.page-responsible-gaming-minor-protection__contact-list li::before {
    content: '•';
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-responsible-gaming-minor-protection__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-responsible-gaming-minor-protection__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-minor-protection__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-responsible-gaming-minor-protection__btn--primary:hover {
    background-color: #e0bb00;
    transform: translateY(-2px);
}

.page-responsible-gaming-minor-protection__btn--secondary {
    background-color: #4A5568; /* A lighter shade of the main dark color */
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-responsible-gaming-minor-protection__btn--secondary:hover {
    background-color: #616e82;
    transform: translateY(-2px);
}

.page-responsible-gaming-minor-protection__link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-responsible-gaming-minor-protection__link-inline:hover {
    color: #e0bb00;
    text-decoration: underline;
}

.page-responsible-gaming-minor-protection__faq {
    padding-top: 60px;
    padding-bottom: 80px;
}

.page-responsible-gaming-minor-protection__faq-item {
    background-color: #2a3342;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-minor-protection__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.page-responsible-gaming-minor-protection__faq-question::before {
    content: '+';
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #FFD700;
}

.page-responsible-gaming-minor-protection__faq-question.active::before {
    content: '-';
}

.page-responsible-gaming-minor-protection__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    padding-left: 30px;
    display: none;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-responsible-gaming-minor-protection__faq-answer.open {
    display: block;
    max-height: 500px; /* Adjust as needed */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gaming-minor-protection__title {
        font-size: 2.5em;
    }

    .page-responsible-gaming-minor-protection__subtitle {
        font-size: 1em;
    }

    .page-responsible-gaming-minor-protection__heading {
        font-size: 2em;
    }

    .page-responsible-gaming-minor-protection__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-responsible-gaming-minor-protection__btn {
        width: 100%;
        text-align: center;
    }

    .page-responsible-gaming-minor-protection__hero {
        padding: 60px 15px;
    }

    .page-responsible-gaming-minor-protection__section {
        padding: 40px 15px;
    }

    .page-responsible-gaming-minor-protection__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gaming-minor-protection__title {
        font-size: 2em;
    }

    .page-responsible-gaming-minor-protection__heading {
        font-size: 1.8em;
    }

    .page-responsible-gaming-minor-protection__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}