/* style/responsible-gambling-get-help.css */
.page-responsible-gambling-get-help {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #0F164C; /* Darker blue for overall background */
}

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

.page-responsible-gambling-get-help__hero {
    background: linear-gradient(135deg, #1A237E, #0F164C);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-get-help__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-responsible-gambling-get-help__hero .page-responsible-gambling-get-help__container {
    position: relative;
    z-index: 1;
}

.page-responsible-gambling-get-help__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main titles */
    font-weight: bold;
}

.page-responsible-gambling-get-help__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling-get-help__brand {
    color: #FFD700;
    font-weight: bold;
}

.page-responsible-gambling-get-help__btn {
    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: 1.1em;
    cursor: pointer;
}

.page-responsible-gambling-get-help__btn--primary {
    background-color: #FFD700;
    color: #1A237E;
    border: 2px solid #FFD700;
}

.page-responsible-gambling-get-help__btn--primary:hover {
    background-color: #e6c200;
    color: #0F164C;
}

.page-responsible-gambling-get-help__btn--secondary {
    background-color: #1A237E;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-responsible-gambling-get-help__btn--secondary:hover {
    background-color: #0F164C;
    color: #FFD700;
    border-color: #e6c200;
}

.page-responsible-gambling-get-help__section {
    padding: 60px 0;
}

.page-responsible-gambling-get-help__section:nth-of-type(even) {
    background-color: #1A237E; /* Main dark blue for alternating sections */
}

.page-responsible-gambling-get-help__section:nth-of-type(odd) {
    background-color: #0F164C; /* Darker blue for alternating sections */
}

.page-responsible-gambling-get-help__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling-get-help__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-responsible-gambling-get-help__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-responsible-gambling-get-help__card {
    background-color: #283593; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #FFFFFF;
}

.page-responsible-gambling-get-help__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-responsible-gambling-get-help__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-responsible-gambling-get-help__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-responsible-gambling-get-help__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #E0E0E0;
}

.page-responsible-gambling-get-help__list li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-responsible-gambling-get-help__text-center {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-responsible-gambling-get-help__question-list {
    list-style: decimal;
    padding-left: 40px;
    max-width: 900px;
    margin: 30px auto;
    color: #E0E0E0;
}

.page-responsible-gambling-get-help__question-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-responsible-gambling-get-help__resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-responsible-gambling-get-help__resource-card {
    background-color: #283593;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-responsible-gambling-get-help__resource-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto 20px auto;
    filter: brightness(1.2);
}

.page-responsible-gambling-get-help__resource-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-responsible-gambling-get-help__resource-card p {
    color: #E0E0E0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-responsible-gambling-get-help__note {
    font-style: italic;
    color: #BDBDBD;
    margin-top: 40px;
    padding: 20px;
    background-color: #1A237E;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
}

.page-responsible-gambling-get-help__note-highlight {
    color: #FFD700;
}

.page-responsible-gambling-get-help__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-responsible-gambling-get-help__image {
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-responsible-gambling-get-help__image--left {
    order: 1;
}

.page-responsible-gambling-get-help__image--right {
    order: 2;
}

.page-responsible-gambling-get-help__text-content {
    flex: 1;
    min-width: 300px;
}

.page-responsible-gambling-get-help__text-content h3 {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-responsible-gambling-get-help__text-content--right {
    order: 1;
}

.page-responsible-gambling-get-help__image--right {
    order: 2;
}

.page-responsible-gambling-get-help__commitment-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-responsible-gambling-get-help__commitment-list li {
    background-color: #283593;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-responsible-gambling-get-help__commitment-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-responsible-gambling-get-help__contact-info {
    text-align: center;
    margin-top: 40px;
    background-color: #1A237E;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-get-help__contact-info p {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-responsible-gambling-get-help__title {
        font-size: 2.8em;
    }
    .page-responsible-gambling-get-help__heading {
        font-size: 2em;
    }
    .page-responsible-gambling-get-help__image {
        max-width: 100%;
        order: initial !important;
    }
    .page-responsible-gambling-get-help__content-block {
        flex-direction: column;
    }
    .page-responsible-gambling-get-help__text-content--right {
        order: initial !important;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-get-help__hero {
        padding: 80px 0;
    }
    .page-responsible-gambling-get-help__title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-get-help__subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-get-help__heading {
        font-size: 1.8em;
    }
    .page-responsible-gambling-get-help__card-title,
    .page-responsible-gambling-get-help__resource-title,
    .page-responsible-gambling-get-help__text-content h3 {
        font-size: 1.5em;
    }
    .page-responsible-gambling-get-help__question-list {
        padding-left: 20px;
    }
    .page-responsible-gambling-get-help__list li {
        font-size: 0.95em;
    }
    .page-responsible-gambling-get-help__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-get-help__title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-get-help__heading {
        font-size: 1.5em;
    }
    .page-responsible-gambling-get-help__section {
        padding: 40px 0;
    }
    .page-responsible-gambling-get-help__card,
    .page-responsible-gambling-get-help__resource-card {
        padding: 20px;
    }
    .page-responsible-gambling-get-help__contact-info {
        padding: 30px 20px;
    }
    .page-responsible-gambling-get-help__contact-info p {
        font-size: 1.1em;
    }
}