/* style/responsible-gambling-self-limitation-tools.css */

/* Biến CSS */
:root {
    --page-responsible-gambling-self-limitation-tools-primary-color: #003366;
    --page-responsible-gambling-self-limitation-tools-secondary-color: #FFD700;
    --page-responsible-gambling-self-limitation-tools-text-light: #f8f8f8;
    --page-responsible-gambling-self-limitation-tools-text-dark: #333;
    --page-responsible-gambling-self-limitation-tools-background-light: #ffffff;
    --page-responsible-gambling-self-limitation-tools-background-dark: #002244;
    --page-responsible-gambling-self-limitation-tools-border-color: #e0e0e0;
}

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

.page-responsible-gambling-self-limitation-tools__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-self-limitation-tools__section {
    padding: 60px 0;
    text-align: center;
}

.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) {
    background-color: var(--page-responsible-gambling-self-limitation-tools-background-dark);
    color: var(--page-responsible-gambling-self-limitation-tools-text-light);
}

.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) .page-responsible-gambling-self-limitation-tools__section-title,
.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) .page-responsible-gambling-self-limitation-tools__feature-title,
.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) .page-responsible-gambling-self-limitation-tools__faq-question {
    color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
}

.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) p {
    color: var(--page-responsible-gambling-self-limitation-tools-text-light);
}

.page-responsible-gambling-self-limitation-tools__section-title {
    font-size: 2.5em;
    color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.page-responsible-gambling-self-limitation-tools__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
    border-radius: 2px;
}

/* Hero Section */
.page-responsible-gambling-self-limitation-tools__hero {
    background: linear-gradient(135deg, var(--page-responsible-gambling-self-limitation-tools-primary-color) 0%, #004488 100%);
    color: var(--page-responsible-gambling-self-limitation-tools-text-light);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.page-responsible-gambling-self-limitation-tools__hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.page-responsible-gambling-self-limitation-tools__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
}

.page-responsible-gambling-self-limitation-tools__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-responsible-gambling-self-limitation-tools__hero-image-container {
    flex-shrink: 0;
    max-width: 500px;
    width: 100%;
    padding: 0 20px;
}

.page-responsible-gambling-self-limitation-tools__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-responsible-gambling-self-limitation-tools__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: none;
}

.page-responsible-gambling-self-limitation-tools__button--primary {
    background-color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
    color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
}

.page-responsible-gambling-self-limitation-tools__button--primary:hover {
    background-color: #e6c200;
}

.page-responsible-gambling-self-limitation-tools__button--secondary {
    background-color: transparent;
    color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
    border: 2px solid var(--page-responsible-gambling-self-limitation-tools-secondary-color);
}

.page-responsible-gambling-self-limitation-tools__button--secondary:hover {
    background-color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
    color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
}

/* Intro Section */
.page-responsible-gambling-self-limitation-tools__intro p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
}

/* Features Grid */
.page-responsible-gambling-self-limitation-tools__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-responsible-gambling-self-limitation-tools__feature-item {
    background-color: var(--page-responsible-gambling-self-limitation-tools-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid var(--page-responsible-gambling-self-limitation-tools-primary-color);
}

.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) .page-responsible-gambling-self-limitation-tools__feature-item {
    background-color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
    color: var(--page-responsible-gambling-self-limitation-tools-text-light);
    border-top-color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
}

.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) .page-responsible-gambling-self-limitation-tools__feature-item p {
    color: var(--page-responsible-gambling-self-limitation-tools-text-light);
}

.page-responsible-gambling-self-limitation-tools__feature-item:hover {
    transform: translateY(-10px);
}

.page-responsible-gambling-self-limitation-tools__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-responsible-gambling-self-limitation-tools__feature-title {
    font-size: 1.8em;
    color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
    margin-bottom: 15px;
}

.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) .page-responsible-gambling-self-limitation-tools__feature-title {
    color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
}

.page-responsible-gambling-self-limitation-tools__feature-item p {
    font-size: 1em;
    color: #555;
}

/* How-To Access */
.page-responsible-gambling-self-limitation-tools__how-to-access ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-responsible-gambling-self-limitation-tools__how-to-access li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
}

.page-responsible-gambling-self-limitation-tools__how-to-access li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
    color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-limitation-tools__how-to-access li strong {
    color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
}

/* Support Section */
.page-responsible-gambling-self-limitation-tools__support-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-responsible-gambling-self-limitation-tools__support-text {
    flex: 2;
    min-width: 300px;
}

.page-responsible-gambling-self-limitation-tools__support-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-responsible-gambling-self-limitation-tools__support-image-container {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-responsible-gambling-self-limitation-tools__support-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-responsible-gambling-self-limitation-tools__faq {
    text-align: left;
}

.page-responsible-gambling-self-limitation-tools__faq-item {
    background-color: var(--page-responsible-gambling-self-limitation-tools-background-light);
    border: 1px solid var(--page-responsible-gambling-self-limitation-tools-border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-self-limitation-tools__faq-question {
    font-size: 1.4em;
    color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-responsible-gambling-self-limitation-tools__faq-answer {
    font-size: 1em;
    color: #555;
}

/* CTA Section */
.page-responsible-gambling-self-limitation-tools__cta {
    background-color: var(--page-responsible-gambling-self-limitation-tools-primary-color);
    color: var(--page-responsible-gambling-self-limitation-tools-text-light);
    padding: 80px 0;
}

.page-responsible-gambling-self-limitation-tools__cta .page-responsible-gambling-self-limitation-tools__section-title {
    color: var(--page-responsible-gambling-self-limitation-tools-secondary-color);
}

.page-responsible-gambling-self-limitation-tools__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-self-limitation-tools__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-responsible-gambling-self-limitation-tools__hero-content {
        max-width: 100%;
    }

    .page-responsible-gambling-self-limitation-tools__hero-title {
        font-size: 2.8em;
    }

    .page-responsible-gambling-self-limitation-tools__hero-subtitle {
        font-size: 1.1em;
    }

    .page-responsible-gambling-self-limitation-tools__support-content {
        flex-direction: column;
        text-align: center;
    }

    .page-responsible-gambling-self-limitation-tools__support-text,
    .page-responsible-gambling-self-limitation-tools__support-image-container {
        min-width: unset;
        width: 100%;
    }

    .page-responsible-gambling-self-limitation-tools__how-to-access li {
        padding-left: 50px;
    }

    .page-responsible-gambling-self-limitation-tools__how-to-access li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-self-limitation-tools__section {
        padding: 40px 0;
    }

    .page-responsible-gambling-self-limitation-tools__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-responsible-gambling-self-limitation-tools__hero-title {
        font-size: 2.2em;
    }

    .page-responsible-gambling-self-limitation-tools__hero-subtitle {
        font-size: 1em;
    }

    .page-responsible-gambling-self-limitation-tools__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-responsible-gambling-self-limitation-tools__feature-item {
        padding: 25px;
    }

    .page-responsible-gambling-self-limitation-tools__faq-question {
        font-size: 1.2em;
    }

    .page-responsible-gambling-self-limitation-tools__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-self-limitation-tools__hero-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-self-limitation-tools__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-self-limitation-tools__how-to-access li {
        font-size: 1em;
    }

    .page-responsible-gambling-self-limitation-tools__faq-question {
        font-size: 1.1em;
    }

    .page-responsible-gambling-self-limitation-tools__cta p {
        font-size: 1em;
    }
}