/* style/responsible-gambling-addiction-recovery.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-color-light: #f9f9f9;
    --button-register: #C30808;
    --button-login: #C30808;
    --button-font-color: #FFFF00;
}

.page-responsible-gambling-addiction-recovery {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--background-color-light); /* Default light background */
}

.page-responsible-gambling-addiction-recovery__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure header offset */
    background: linear-gradient(135deg, var(--primary-color) 0%, #008000 100%); /* Green gradient */
    color: var(--text-color-light);
    overflow: hidden;
}

.page-responsible-gambling-addiction-recovery__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-responsible-gambling-addiction-recovery__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-responsible-gambling-addiction-recovery__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-addiction-recovery__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-responsible-gambling-addiction-recovery__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-addiction-recovery__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-responsible-gambling-addiction-recovery__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--text-color-light);
}

.page-responsible-gambling-addiction-recovery__cta-button:hover {
    background: #005f2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-responsible-gambling-addiction-recovery__section {
    padding: 60px 20px;
    text-align: center;
}

.page-responsible-gambling-addiction-recovery__section:nth-of-type(even) {
    background-color: var(--secondary-color);
}

.page-responsible-gambling-addiction-recovery__dark-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-responsible-gambling-addiction-recovery__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-responsible-gambling-addiction-recovery__dark-section .page-responsible-gambling-addiction-recovery__section-title {
    color: var(--text-color-light);
}

.page-responsible-gambling-addiction-recovery__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.page-responsible-gambling-addiction-recovery__dark-section .page-responsible-gambling-addiction-recovery__sub-title {
    color: var(--text-color-light);
}

.page-responsible-gambling-addiction-recovery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-responsible-gambling-addiction-recovery__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Content Block */
.page-responsible-gambling-addiction-recovery__image-content-block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-responsible-gambling-addiction-recovery__image-content-block img {
    flex: 0 0 45%;
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-addiction-recovery__image-content-block .page-responsible-gambling-addiction-recovery__text-block {
    flex: 1;
    margin-bottom: 0;
}

/* Cards Grid */
.page-responsible-gambling-addiction-recovery__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling-addiction-recovery__card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-dark);
    border: 1px solid #e0e0e0;
}

.page-responsible-gambling-addiction-recovery__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling-addiction-recovery__card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure image is responsive */
    display: block;
}

.page-responsible-gambling-addiction-recovery__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Feature List */
.page-responsible-gambling-addiction-recovery__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-responsible-gambling-addiction-recovery__feature-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    color: var(--text-color-dark);
    border-left: 5px solid var(--primary-color);
}

.page-responsible-gambling-addiction-recovery__feature-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

/* List */
.page-responsible-gambling-addiction-recovery__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling-addiction-recovery__list-item {
    background: var(--secondary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    font-size: 1.1em;
    color: var(--text-color-dark);
}

.page-responsible-gambling-addiction-recovery__list-item strong {
    color: var(--primary-color);
}

/* CTA Buttons Group */
.page-responsible-gambling-addiction-recovery__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-responsible-gambling-addiction-recovery__btn-primary,
.page-responsible-gambling-addiction-recovery__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-responsible-gambling-addiction-recovery__btn-primary {
    background: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-addiction-recovery__btn-primary:hover {
    background: #005f2e;
    border-color: #005f2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-addiction-recovery__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}