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

.page-responsible-gambling-self-limitation-tools {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-responsible-gambling-self-limitation-tools__hero {
    background: linear-gradient(135deg, #007BFF, #FFC107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-self-limitation-tools__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-responsible-gambling-self-limitation-tools__hero .page-responsible-gambling-self-limitation-tools__container {
    position: relative;
    z-index: 2;
}

.page-responsible-gambling-self-limitation-tools__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-limitation-tools__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

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

.page-responsible-gambling-self-limitation-tools__btn--primary {
    background-color: #FFC107;
    color: #000;
}

.page-responsible-gambling-self-limitation-tools__btn--primary:hover {
    background-color: #e0a800;
    color: #000;
}

.page-responsible-gambling-self-limitation-tools__btn--secondary {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
    margin-left: 15px;
}

.page-responsible-gambling-self-limitation-tools__btn--secondary:hover {
    background-color: #007BFF;
    color: #fff;
}

.page-responsible-gambling-self-limitation-tools__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-responsible-gambling-self-limitation-tools__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-responsible-gambling-self-limitation-tools__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling-self-limitation-tools__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-responsible-gambling-self-limitation-tools__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-responsible-gambling-self-limitation-tools__content-wrapper:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-responsible-gambling-self-limitation-tools__image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-self-limitation-tools__text-content {
    flex: 1;
    max-width: 50%;
    font-size: 1.1em;
    color: #444;
}

.page-responsible-gambling-self-limitation-tools__text-content p {
    margin-bottom: 15px;
}

.page-responsible-gambling-self-limitation-tools__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-responsible-gambling-self-limitation-tools__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-responsible-gambling-self-limitation-tools__tool-card,
.page-responsible-gambling-self-limitation-tools__benefit-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-responsible-gambling-self-limitation-tools__tool-card:hover,
.page-responsible-gambling-self-limitation-tools__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling-self-limitation-tools__tool-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #007BFF;
}

.page-responsible-gambling-self-limitation-tools__tool-title,
.page-responsible-gambling-self-limitation-tools__benefit-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling-self-limitation-tools__tool-description,
.page-responsible-gambling-self-limitation-tools__benefit-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.page-responsible-gambling-self-limitation-tools__list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
    text-align: left;
    color: #555;
}

.page-responsible-gambling-self-limitation-tools__list li {
    margin-bottom: 8px;
}

.page-responsible-gambling-self-limitation-tools__list strong {
    color: #333;
}

.page-responsible-gambling-self-limitation-tools__how-to-use .page-responsible-gambling-self-limitation-tools__section-title,
.page-responsible-gambling-self-limitation-tools__support .page-responsible-gambling-self-limitation-tools__section-title,
.page-responsible-gambling-self-limitation-tools__conclusion .page-responsible-gambling-self-limitation-tools__section-title {
    color: #007BFF;
}

.page-responsible-gambling-self-limitation-tools__steps-list {
    list-style-type: decimal;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding-left: 40px;
    font-size: 1.1em;
    color: #444;
}

.page-responsible-gambling-self-limitation-tools__steps-list li {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-responsible-gambling-self-limitation-tools__steps-list li strong {
    color: #007BFF;
}

.page-responsible-gambling-self-limitation-tools__steps-list li a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling-self-limitation-tools__steps-list li a:hover {
    text-decoration: underline;
}

.page-responsible-gambling-self-limitation-tools__cta-text {
    text-align: center;
    font-size: 1.2em;
    color: #333;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: 500;
}

.page-responsible-gambling-self-limitation-tools__cta-buttons {
    text-align: center;
    margin-top: 30px;
}

/* Ensure contrast for links within content */
.page-responsible-gambling-self-limitation-tools a {
    color: #007BFF;
    text-decoration: none;
}

.page-responsible-gambling-self-limitation-tools a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-self-limitation-tools__hero-title {
        font-size: 2.5em;
    }

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

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

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

    .page-responsible-gambling-self-limitation-tools__content-wrapper:nth-of-type(even) {
        flex-direction: column;
    }

    .page-responsible-gambling-self-limitation-tools__image {
        max-width: 80%;
        margin-bottom: 30px;
    }

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

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

    .page-responsible-gambling-self-limitation-tools__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

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

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

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

    .page-responsible-gambling-self-limitation-tools__section {
        padding: 40px 0;
    }

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

    .page-responsible-gambling-self-limitation-tools__description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-responsible-gambling-self-limitation-tools__tool-card,
    .page-responsible-gambling-self-limitation-tools__benefit-card {
        padding: 25px;
    }

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

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

    .page-responsible-gambling-self-limitation-tools__steps-list {
        font-size: 1em;
        padding-left: 25px;
    }

    .page-responsible-gambling-self-limitation-tools__cta-text {
        font-size: 1.1em;
    }

    .page-responsible-gambling-self-limitation-tools__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .page-responsible-gambling-self-limitation-tools__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-responsible-gambling-self-limitation-tools__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}