/* style/responsible-gambling-help-resources.css */

/* Biến CSS cho màu sắc */
:root {
    --primary-color: #1A237E;
    --secondary-color: #FFC107;
    --text-dark: #333;
    --text-light: #f8f8f8;
    --background-light: #ffffff;
    --background-dark: #1A237E;
    --border-color: #e0e0e0;
}

.page-responsible-gambling-help-resources {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

.page-responsible-gambling-help-resources__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3a9a 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
}

.page-responsible-gambling-help-resources__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: bold;
}

.page-responsible-gambling-help-resources__hero-subtitle {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.page-responsible-gambling-help-resources__content-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-responsible-gambling-help-resources__text-block {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-help-resources__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling-help-resources__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 10px;
}

.page-responsible-gambling-help-resources__text-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-responsible-gambling-help-resources__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.page-responsible-gambling-help-resources__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-responsible-gambling-help-resources__list li strong {
    color: var(--primary-color);
}

.page-responsible-gambling-help-resources__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-help-resources__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background-color: var(--primary-color);
    border-radius: 10px;
    color: var(--text-light);
}

.page-responsible-gambling-help-resources__cta-text {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 500;
}

.page-responsible-gambling-help-resources__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-resources__cta-button:hover {
    background-color: #e6b000; /* Slightly darker secondary color */
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 1.2em;
    }

    .page-responsible-gambling-help-resources__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-help-resources__subsection-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-help-resources__text-block p,
    .page-responsible-gambling-help-resources__list li {
        font-size: 1em;
    }

    .page-responsible-gambling-help-resources__cta-text {
        font-size: 1.3em;
    }

    .page-responsible-gambling-help-resources__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-help-resources__hero-section {
        padding: 80px 0 50px;
    }

    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2em;
    }

    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 1em;
    }

    .page-responsible-gambling-help-resources__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-help-resources__subsection-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling-help-resources__text-block {
        padding: 15px;
    }

    .page-responsible-gambling-help-resources__cta-section {
        padding: 30px 15px;
    }

    .page-responsible-gambling-help-resources__cta-text {
        font-size: 1.1em;
    }

    .page-responsible-gambling-help-resources__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}