/* style/responsible-gambling-help-resources.css */
.page-responsible-gambling-help-resources {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-responsible-gambling-help-resources .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-help-resources .hero-section {
    background: linear-gradient(135deg, #1A202C, #3A404C); /* Dark gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-help-resources .hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-responsible-gambling-help-resources .hero-subtitle {
    font-size: 1.3em;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-responsible-gambling-help-resources .hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.page-responsible-gambling-help-resources .content-section {
    padding: 60px 0;
    background-color: #2A303C; /* Slightly lighter dark for content sections */
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-help-resources .content-section:nth-of-type(even) {
    background-color: #1A202C;
}

.page-responsible-gambling-help-resources .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-responsible-gambling-help-resources .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-responsible-gambling-help-resources .sign-list, 
.page-responsible-gambling-help-resources .resource-list, 
.page-responsible-gambling-help-resources .item-list, 
.page-responsible-gambling-help-resources .tip-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-responsible-gambling-help-resources .sign-list li, 
.page-responsible-gambling-help-resources .resource-list li, 
.page-responsible-gambling-help-resources .item-list li, 
.page-responsible-gambling-help-resources .tip-list li {
    background-color: #2E3440; /* Slightly lighter dark for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-resources .list-icon {
    color: #FFD700;
    font-size: 1.2em;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
}

.page-responsible-gambling-help-resources .section-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-responsible-gambling-help-resources .resource-card, 
.page-responsible-gambling-help-resources .support-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-help-resources .resource-card:hover, 
.page-responsible-gambling-help-resources .support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling-help-resources .card-title, 
.page-responsible-gambling-help-resources .item-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-responsible-gambling-help-resources .resource-card p, 
.page-responsible-gambling-help-resources .support-item p {
    color: #CCCCCC;
    margin-bottom: 15px;
}

.page-responsible-gambling-help-resources .resource-card .card-image, 
.page-responsible-gambling-help-resources .support-item .item-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-resources .btn {
    display: inline-block;
    background-color: #FFD700; /* Accent gold for buttons */
    color: #1A202C; /* Dark text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.page-responsible-gambling-help-resources .btn:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-responsible-gambling-help-resources .faq-item {
    background-color: #2A303C;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.page-responsible-gambling-help-resources .faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3A404C;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-responsible-gambling-help-resources .faq-question:hover {
    background-color: #4A505C;
}

.page-responsible-gambling-help-resources .faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-responsible-gambling-help-resources .faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-responsible-gambling-help-resources .faq-answer {
    padding: 0 20px 20px;
    font-size: 1.05em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-responsible-gambling-help-resources .faq-answer.active {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 20px 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-help-resources .hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling-help-resources .hero-subtitle {
        font-size: 1.1em;
    }
    .page-responsible-gambling-help-resources .section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-help-resources .help-resources-grid, 
    .page-responsible-gambling-help-resources .j88-support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-help-resources .hero-section {
        padding: 60px 0 30px;
    }
    .page-responsible-gambling-help-resources .hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-help-resources .hero-subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-help-resources .content-section {
        padding: 40px 0;
    }
    .page-responsible-gambling-help-resources .section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-help-resources p, 
    .page-responsible-gambling-help-resources .sign-list li, 
    .page-responsible-gambling-help-resources .resource-list li, 
    .page-responsible-gambling-help-resources .item-list li, 
    .page-responsible-gambling-help-resources .tip-list li {
        font-size: 0.95em;
    }
    .page-responsible-gambling-help-resources .card-title, 
    .page-responsible-gambling-help-resources .item-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-help-resources .faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-help-resources .container {
        padding: 0 15px;
    }
    .page-responsible-gambling-help-resources .hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-help-resources .hero-subtitle {
        font-size: 0.9em;
    }
    .page-responsible-gambling-help-resources .section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-help-resources .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-responsible-gambling-help-resources .faq-question {
        padding: 15px;
    }
    .page-responsible-gambling-help-resources .faq-answer {
        padding: 0 15px 15px;
    }
}