/* style/gambling-safety-guide-scam-prevention.css */
.page-gambling-safety-guide-scam-prevention {
    font-family: 'Arial', sans-serif;
    color: #F5F5F5; /* Light text for dark background */
    background-color: #0A192F; /* Main background color */
}

.page-gambling-safety-guide-scam-prevention .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gambling-safety-guide-scam-prevention .hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #2a3a5a 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
}

.page-gambling-safety-guide-scam-prevention .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for main title */
}

.page-gambling-safety-guide-scam-prevention .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0; /* Lighter grey for subtitle */
}

.page-gambling-safety-guide-scam-prevention .content-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-gambling-safety-guide-scam-prevention .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.page-gambling-safety-guide-scam-prevention .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.page-gambling-safety-guide-scam-prevention .subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-gambling-safety-guide-scam-prevention p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #F5F5F5;
}

.page-gambling-safety-guide-scam-prevention ul,
.page-gambling-safety-guide-scam-prevention ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #F5F5F5;
}

.page-gambling-safety-guide-scam-prevention ol {
    list-style-type: decimal;
}

.page-gambling-safety-guide-scam-prevention ul li,
.page-gambling-safety-guide-scam-prevention ol li {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.page-gambling-safety-guide-scam-prevention .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px 10px 0 10px;
    cursor: pointer;
}

.page-gambling-safety-guide-scam-prevention .primary-btn {
    background-color: #FFD700; /* Gold background */
    color: #0A192F; /* Midnight Blue text */
    border: 2px solid #FFD700;
}

.page-gambling-safety-guide-scam-prevention .primary-btn:hover {
    background-color: #e6c200;
    color: #000;
}

.page-gambling-safety-guide-scam-prevention .secondary-btn {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-gambling-safety-guide-scam-prevention .secondary-btn:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-gambling-safety-guide-scam-prevention .text-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-gambling-safety-guide-scam-prevention .text-link:hover {
    color: #e6c200;
}

.page-gambling-safety-guide-scam-prevention .content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-safety-guide-scam-prevention .cta-banner {
    background-color: #1A2A47; /* Slightly lighter dark blue */
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-gambling-safety-guide-scam-prevention .cta-banner h3 {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gambling-safety-guide-scam-prevention .cta-banner p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-gambling-safety-guide-scam-prevention .faq-container {
    margin-top: 40px;
}

.page-gambling-safety-guide-scam-prevention .faq-item {
    background-color: #1A2A47;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-safety-guide-scam-prevention .faq-question {
    font-size: 1.4em;
    color: #FFD700;
    cursor: pointer;
    margin-bottom: 10px;
}

.page-gambling-safety-guide-scam-prevention .faq-answer {
    font-size: 1.05em;
    color: #F5F5F5;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gambling-safety-guide-scam-prevention .faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gambling-safety-guide-scam-prevention .hero-title {
        font-size: 2.5em;
    }

    .page-gambling-safety-guide-scam-prevention .hero-subtitle {
        font-size: 1.1em;
    }

    .page-gambling-safety-guide-scam-prevention .section-title {
        font-size: 2em;
    }

    .page-gambling-safety-guide-scam-prevention .subsection-title {
        font-size: 1.5em;
    }

    .page-gambling-safety-guide-scam-prevention p,
    .page-gambling-safety-guide-scam-prevention ul li,
    .page-gambling-safety-guide-scam-prevention ol li {
        font-size: 1em;
    }

    .page-gambling-safety-guide-scam-prevention .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gambling-safety-guide-scam-prevention .cta-banner h3 {
        font-size: 1.8em;
    }

    .page-gambling-safety-guide-scam-prevention .cta-banner p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-gambling-safety-guide-scam-prevention .hero-section {
        padding: 60px 0;
    }

    .page-gambling-safety-guide-scam-prevention .hero-title {
        font-size: 2em;
    }

    .page-gambling-safety-guide-scam-prevention .section-title {
        font-size: 1.8em;
    }

    .page-gambling-safety-guide-scam-prevention .subsection-title {
        font-size: 1.3em;
    }

    .page-gambling-safety-guide-scam-prevention .btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .page-gambling-safety-guide-scam-prevention .cta-banner h3 {
        font-size: 1.5em;
    }
}