/* style/responsible-gambling-help-resources.css */

/* Base Styles for the page-responsible-gambling-help-resources */
.page-responsible-gambling-help-resources {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-responsible-gambling-help-resources__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-help-resources__section:nth-of-type(even) {
    background-color: #f2f4f6;
}

.page-responsible-gambling-help-resources__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-responsible-gambling-help-resources__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Secondary color */
    border-radius: 2px;
}

.page-responsible-gambling-help-resources__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-responsible-gambling-help-resources__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

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

.page-responsible-gambling-help-resources__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    color: #e0e0e0;
}

.page-responsible-gambling-help-resources__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary color */
    color: #0056b3; /* Darker blue for contrast */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-resources__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Content Wrapper for text and image */
.page-responsible-gambling-help-resources__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.page-responsible-gambling-help-resources__text-content {
    flex: 2;
    min-width: 300px;
}

.page-responsible-gambling-help-resources__text-content p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05em;
}

.page-responsible-gambling-help-resources__image-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-responsible-gambling-help-resources__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-help-resources__image--center {
    display: block;
    margin: 40px auto;
    max-width: 70%;
}

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

.page-responsible-gambling-help-resources__grid-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007BFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-help-resources__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-help-resources__item-title {
    font-size: 1.4em;
    color: #007BFF; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__grid-item p {
    color: #555;
}

/* Organizations Section */
.page-responsible-gambling-help-resources__organization-card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-help-resources__organization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #FFD700; /* Secondary color */
}

.page-responsible-gambling-help-resources__card-title {
    font-size: 1.8em;
    color: #007BFF; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__organization-card p {
    margin-bottom: 15px;
    color: #444;
}

.page-responsible-gambling-help-resources__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-responsible-gambling-help-resources__contact-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.05em;
}

.page-responsible-gambling-help-resources__contact-list li strong {
    color: #333;
}

.page-responsible-gambling-help-resources__contact-list a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-responsible-gambling-help-resources__contact-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-responsible-gambling-help-resources__logo-small {
    max-width: 120px;
    height: auto;
    float: right;
    margin-left: 20px;
    margin-top: -10px;
}

/* Tools Section */
.page-responsible-gambling-help-resources__tool-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-responsible-gambling-help-resources__tool-list li {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-responsible-gambling-help-resources__tool-list li:hover {
    transform: translateY(-5px);
}

.page-responsible-gambling-help-resources__tool-title {
    font-size: 1.5em;
    color: #007BFF; /* Primary color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__tool-list p {
    color: #555;
}

.page-responsible-gambling-help-resources__cta-box {
    text-align: center;
    background-color: #e9f5ff; /* Lighter blue */
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    border: 1px dashed #007BFF;
}

.page-responsible-gambling-help-resources__cta-box p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

.page-responsible-gambling-help-resources__cta-button {
    display: inline-block;
    background-color: #007BFF; /* Primary color */
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-responsible-gambling-help-resources__cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Advice Section */
.page-responsible-gambling-help-resources__advice-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-responsible-gambling-help-resources__advice-list li {
    background-color: #fefefe;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #FFD700;
    font-size: 1.05em;
    color: #444;
}

.page-responsible-gambling-help-resources__advice-list li strong {
    color: #007BFF;
}

/* FAQ Section */
.page-responsible-gambling-help-resources__faq-item {
    background-color: #fefefe;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #007BFF;
}

.page-responsible-gambling-help-resources__faq-question {
    font-size: 1.4em;
    color: #007BFF; /* Primary color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__faq-answer {
    color: #555;
    font-size: 1.05em;
}

/* Final CTA Section */
.page-responsible-gambling-help-resources__final-cta {
    background: linear-gradient(90deg, #007BFF, #4da3ff); /* Primary color gradient */
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 0;
    margin-bottom: 0;
}

.page-responsible-gambling-help-resources__final-cta .page-responsible-gambling-help-resources__section-title {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-resources__final-cta .page-responsible-gambling-help-resources__section-title::after {
    background-color: #FFD700;
}

.page-responsible-gambling-help-resources__final-cta .page-responsible-gambling-help-resources__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-responsible-gambling-help-resources__final-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary color */
    color: #0056b3; /* Darker blue for contrast */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 15px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-resources__final-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-help-resources__final-cta-button--secondary {
    background-color: #fff;
    color: #007BFF;
}

.page-responsible-gambling-help-resources__final-cta-button--secondary:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling-help-resources__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-help-resources__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-responsible-gambling-help-resources__image-box {
        order: -1; /* Image above text on smaller screens */
    }
    .page-responsible-gambling-help-resources__image--center {
        max-width: 90%;
    }
    .page-responsible-gambling-help-resources__logo-small {
        float: none;
        margin: 15px auto 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 1.1em;
    }
    .page-responsible-gambling-help-resources__section {
        padding: 40px 0;
    }
    .page-responsible-gambling-help-resources__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-help-resources__section-description {
        font-size: 1em;
    }
    .page-responsible-gambling-help-resources__grid-item, 
    .page-responsible-gambling-help-resources__organization-card, 
    .page-responsible-gambling-help-resources__tool-list li, 
    .page-responsible-gambling-help-resources__faq-item {
        padding: 20px;
    }
    .page-responsible-gambling-help-resources__item-title, 
    .page-responsible-gambling-help-resources__card-title, 
    .page-responsible-gambling-help-resources__tool-title, 
    .page-responsible-gambling-help-resources__faq-question {
        font-size: 1.3em;
    }
    .page-responsible-gambling-help-resources__final-cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }
    .page-responsible-gambling-help-resources__final-cta-button:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 0.95em;
    }
    .page-responsible-gambling-help-resources__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling-help-resources__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-help-resources__section-description {
        font-size: 0.9em;
    }
    .page-responsible-gambling-help-resources__grid-item, 
    .page-responsible-gambling-help-resources__organization-card, 
    .page-responsible-gambling-help-resources__tool-list li, 
    .page-responsible-gambling-help-resources__faq-item {
        padding: 15px;
    }
    .page-responsible-gambling-help-resources__item-title, 
    .page-responsible-gambling-help-resources__card-title, 
    .page-responsible-gambling-help-resources__tool-title, 
    .page-responsible-gambling-help-resources__faq-question {
        font-size: 1.2em;
    }
    .page-responsible-gambling-help-resources__final-cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}