/* style/safe-gambling-minor-protection.css */
.page-safe-gambling-minor-protection {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F8F8F8; /* Light gray for main text on dark background */
    background-color: #0A192F; /* Darker background */
}

.page-safe-gambling-minor-protection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-safe-gambling-minor-protection__hero-section {
    background: linear-gradient(135deg, #1A2E47, #0A192F);
    color: #FFD700; /* Gold for hero text */
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-safe-gambling-minor-protection__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-safe-gambling-minor-protection__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #F8F8F8;
}

.page-safe-gambling-minor-protection__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E47; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-safe-gambling-minor-protection__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-safe-gambling-minor-protection__cta-button--secondary {
    background-color: #1A2E47;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-safe-gambling-minor-protection__cta-button--secondary:hover {
    background-color: #0A192F;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-safe-gambling-minor-protection__section {
    padding: 60px 0;
    background-color: #1A2E47;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-safe-gambling-minor-protection__section:nth-of-type(even) {
    background-color: #0A192F;
}

.page-safe-gambling-minor-protection__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-safe-gambling-minor-protection__intro p,
.page-safe-gambling-minor-protection__parental-advice p,
.page-safe-gambling-minor-protection__resources p,
.page-safe-gambling-minor-protection__commitment p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0; /* Lighter gray for readability */
}

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

.page-safe-gambling-minor-protection__grid-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2C4762;
}

.page-safe-gambling-minor-protection__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-safe-gambling-minor-protection__item-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for item titles */
    margin-bottom: 15px;
}

.page-safe-gambling-minor-protection__grid-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-safe-gambling-minor-protection__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-safe-gambling-minor-protection__list li {
    background-color: #0A192F;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 4px;
    color: #E0E0E0;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-safe-gambling-minor-protection__list li strong {
    color: #FFD700;
}

.page-safe-gambling-minor-protection__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-safe-gambling-minor-protection__hero-title {
        font-size: 2.5em;
    }

    .page-safe-gambling-minor-protection__hero-subtitle {
        font-size: 1em;
    }

    .page-safe-gambling-minor-protection__section-title {
        font-size: 2em;
    }

    .page-safe-gambling-minor-protection__grid {
        grid-template-columns: 1fr;
    }

    .page-safe-gambling-minor-protection__grid-item {
        padding: 20px;
    }

    .page-safe-gambling-minor-protection__item-title {
        font-size: 1.5em;
    }

    .page-safe-gambling-minor-protection__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-safe-gambling-minor-protection__hero-title {
        font-size: 2em;
    }

    .page-safe-gambling-minor-protection__hero-subtitle {
        font-size: 0.9em;
    }

    .page-safe-gambling-minor-protection__section-title {
        font-size: 1.8em;
    }

    .page-safe-gambling-minor-protection__grid-item {
        padding: 15px;
    }

    .page-safe-gambling-minor-protection__item-title {
        font-size: 1.3em;
    }
    .page-safe-gambling-minor-protection__list li {
        font-size: 1em;
        padding: 10px 15px;
    }
}