/* style/responsible-gambling-self-limit-tools.css */
.page-responsible-gambling-self-limit-tools {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2239; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-responsible-gambling-self-limit-tools__hero-section {
    background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%); /* Dark blue gradient */
    color: #FFFFFF; /* White text for hero section */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-responsible-gambling-self-limit-tools__hero-content {
    max-width: 800px;
}

.page-responsible-gambling-self-limit-tools__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-responsible-gambling-self-limit-tools__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-responsible-gambling-self-limit-tools__hero-image-wrapper {
    width: 100%;
    max-width: 700px;
    margin-top: 40px;
}

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

.page-responsible-gambling-self-limit-tools__section {
    padding: 60px 0;
    background-color: #0A2239;
}

.page-responsible-gambling-self-limit-tools__section:nth-of-type(even) {
    background-color: #1A3A5A; /* Slightly lighter dark blue for alternating sections */
}

.page-responsible-gambling-self-limit-tools__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling-self-limit-tools__section-text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-responsible-gambling-self-limit-tools__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark blue text on gold button */
    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;
    margin-top: 20px;
}

.page-responsible-gambling-self-limit-tools__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-responsible-gambling-self-limit-tools__cta-button--secondary {
    background-color: #0A2239;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-responsible-gambling-self-limit-tools__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-2px);
}

.page-responsible-gambling-self-limit-tools__cta-button--primary {
    background-color: #FFD700;
    color: #0A2239;
}

.page-responsible-gambling-self-limit-tools__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-responsible-gambling-self-limit-tools__tool-item {
    background-color: #1A3A5A; /* Lighter dark blue for tool cards */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-responsible-gambling-self-limit-tools__tool-item:hover {
    transform: translateY(-5px);
}

.page-responsible-gambling-self-limit-tools__tool-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-responsible-gambling-self-limit-tools__tool-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for tool titles */
    margin-bottom: 15px;
}

.page-responsible-gambling-self-limit-tools__tool-description {
    font-size: 1.05em;
    color: #E0E0E0;
    text-align: justify;
}

.page-responsible-gambling-self-limit-tools__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 40px 0;
}

.page-responsible-gambling-self-limit-tools__steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-responsible-gambling-self-limit-tools__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700; /* Gold step number */
    color: #0A2239; /* Dark blue text on gold */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-responsible-gambling-self-limit-tools__commitment-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-responsible-gambling-self-limit-tools__commitment-text {
    flex: 1;
    min-width: 300px;
}

.page-responsible-gambling-self-limit-tools__commitment-text p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
    text-align: justify;
}

.page-responsible-gambling-self-limit-tools__commitment-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-responsible-gambling-self-limit-tools__commitment-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-responsible-gambling-self-limit-tools__commitment-text ul li::before {
    content: '✔️'; /* Checkmark icon */
    color: #FFD700; /* Gold checkmark */
    position: absolute;
    left: 0;
    top: 0;
}

.page-responsible-gambling-self-limit-tools__commitment-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-responsible-gambling-self-limit-tools__commitment-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-limit-tools__resources-list {
    list-style: disc;
    padding-left: 25px;
    margin: 40px 0;
    color: #E0E0E0;
}

.page-responsible-gambling-self-limit-tools__resources-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-responsible-gambling-self-limit-tools__resources-list li::marker {
    color: #FFD700; /* Gold bullet points */
}

.page-responsible-gambling-self-limit-tools__faq-item {
    background-color: #1A3A5A;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-limit-tools__faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-responsible-gambling-self-limit-tools__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-responsible-gambling-self-limit-tools__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-responsible-gambling-self-limit-tools__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    text-align: justify;
}

.page-responsible-gambling-self-limit-tools__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

.page-responsible-gambling-self-limit-tools__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling-self-limit-tools__hero-section {
        padding: 60px 20px;
    }

    .page-responsible-gambling-self-limit-tools__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling-self-limit-tools__hero-description {
        font-size: 1.1em;
    }

    .page-responsible-gambling-self-limit-tools__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-self-limit-tools__tool-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-self-limit-tools__commitment-content {
        flex-direction: column;
    }
}

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

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

    .page-responsible-gambling-self-limit-tools__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-responsible-gambling-self-limit-tools__tool-icon {
        width: 60px;
        height: 60px;
    }

    .page-responsible-gambling-self-limit-tools__tool-item {
        padding: 20px;
    }

    .page-responsible-gambling-self-limit-tools__steps-list li {
        padding-left: 40px;
        font-size: 1em;
    }

    .page-responsible-gambling-self-limit-tools__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

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