/* style/responsible-gambling.css */
:root {
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --text-light: #F7FAFC;
    --text-dark: #1A202C;
    --bg-dark: #1A202C;
    --bg-light: #F7FAFC;
    --accent-dark: #B8860B; /* Darker gold for hover/active */
}

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

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

.page-responsible-gambling h1, 
.page-responsible-gambling h2, 
.page-responsible-gambling h3 {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-responsible-gambling h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
}

.page-responsible-gambling h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-responsible-gambling h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-responsible-gambling h3 {
    font-size: 1.6em;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-responsible-gambling p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-responsible-gambling a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-responsible-gambling a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.page-responsible-gambling ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-responsible-gambling ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Hero Section */
.page-responsible-gambling .hero-section {
    background-color: var(--bg-dark);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-responsible-gambling .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.page-responsible-gambling .hero-image-main {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

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

.page-responsible-gambling .cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-responsible-gambling .cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Content Section */
.page-responsible-gambling .content-section {
    padding: 60px 0;
    background-color: #282C34; /* Slightly lighter dark background */
}

.page-responsible-gambling .content-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

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

.page-responsible-gambling .principle-item, 
.page-responsible-gambling .tool-item {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-responsible-gambling .principle-item:hover, 
.page-responsible-gambling .tool-item:hover {
    transform: translateY(-5px);
}

.page-responsible-gambling .principle-item h3, 
.page-responsible-gambling .tool-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 1.5em;
}

.page-responsible-gambling .tool-item ul {
    list-style-type: disc;
    margin-left: 20px;
}

.page-responsible-gambling .tool-item ul li {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* FAQ Section */
.page-responsible-gambling .faq-container {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-responsible-gambling .faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.page-responsible-gambling .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #1A202C;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-responsible-gambling .faq-question:hover {
    background-color: #282C34;
}

.page-responsible-gambling .faq-question h3 {
    margin: 0;
    color: var(--text-light);
    font-size: 1.3em;
}

.page-responsible-gambling .faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-responsible-gambling .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-responsible-gambling .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #282C34;
}

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

.page-responsible-gambling .faq-answer p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA Section */
.page-responsible-gambling .cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.page-responsible-gambling .cta-section h2 {
    color: var(--text-light);
    margin-bottom: 25px;
}

.page-responsible-gambling .cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling .large-button {
    padding: 18px 50px;
    font-size: 1.4em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-responsible-gambling h1 {
        font-size: 2.4em;
    }
    .page-responsible-gambling h2 {
        font-size: 2em;
    }
    .page-responsible-gambling h3 {
        font-size: 1.4em;
    }
    .page-responsible-gambling .hero-content p {
        font-size: 1.1em;
    }
    .page-responsible-gambling .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-responsible-gambling .large-button {
        padding: 15px 40px;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling h1 {
        font-size: 2em;
    }
    .page-responsible-gambling h2 {
        font-size: 1.8em;
    }
    .page-responsible-gambling h3 {
        font-size: 1.3em;
    }
    .page-responsible-gambling p, 
    .page-responsible-gambling ul li {
        font-size: 1em;
    }
    .page-responsible-gambling .hero-section, 
    .page-responsible-gambling .content-section, 
    .page-responsible-gambling .cta-section {
        padding: 40px 0;
    }
    .page-responsible-gambling .principles-grid, 
    .page-responsible-gambling .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-responsible-gambling .principle-item, 
    .page-responsible-gambling .tool-item {
        padding: 25px;
    }
    .page-responsible-gambling .faq-question {
        padding: 15px 20px;
    }
    .page-responsible-gambling .faq-question h3 {
        font-size: 1.1em;
    }
    .page-responsible-gambling .faq-toggle {
        font-size: 1.8em;
    }
    .page-responsible-gambling .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling h1 {
        font-size: 1.8em;
    }
    .page-responsible-gambling h2 {
        font-size: 1.6em;
    }
    .page-responsible-gambling .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling .large-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-responsible-gambling .hero-image-main {
        border-radius: 5px;
    }
    .page-responsible-gambling .content-image {
        border-radius: 5px;
    }
}