:root {
    --primary-color: #1A202C; /* Dark Blue/Black */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #F7FAFC; /* Light Gray for dark backgrounds */
    --text-dark: #2D3748; /* Dark Gray for light backgrounds */
    --bg-light: #F7FAFC; /* Light background */
    --bg-dark: #1A202C; /* Dark background */
    --border-color: #E2E8F0;
    --button-hover-bg: #E6B800;
}

.page-resources-vietnam-online-betting-market-insight {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-resources-vietnam-online-betting-market-insight__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-vietnam-online-betting-market-insight__section:last-of-type {
    border-bottom: none;
}

.page-resources-vietnam-online-betting-market-insight__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-vietnam-online-betting-market-insight h1,
.page-resources-vietnam-online-betting-market-insight h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-resources-vietnam-online-betting-market-insight h1 {
    font-size: 3.2em;
}

.page-resources-vietnam-online-betting-market-insight h2 {
    font-size: 2.5em;
}

.page-resources-vietnam-online-betting-market-insight h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-vietnam-online-betting-market-insight h4 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.page-resources-vietnam-online-betting-market-insight p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-vietnam-online-betting-market-insight ul,
.page-resources-vietnam-online-betting-market-insight ol {
    margin-bottom: 15px;
    padding-left: 25px;
    font-size: 1.1em;
}

.page-resources-vietnam-online-betting-market-insight li {
    margin-bottom: 8px;
}

.page-resources-vietnam-online-betting-market-insight strong {
    color: var(--primary-color);
}

/* Hero Section */
.page-resources-vietnam-online-betting-market-insight__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333d4e 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-vietnam-online-betting-market-insight__hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-vietnam-online-betting-market-insight__hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.page-resources-vietnam-online-betting-market-insight__hero-content h1 {
    color: var(--secondary-color);
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-vietnam-online-betting-market-insight__hero-content p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-resources-vietnam-online-betting-market-insight__hero-image {
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-vietnam-online-betting-market-insight__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-resources-vietnam-online-betting-market-insight__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-vietnam-online-betting-market-insight__cta-button:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-vietnam-online-betting-market-insight__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
}

/* Image styles within content */
.page-resources-vietnam-online-betting-market-insight__image--large {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* FAQ Section */
.page-resources-vietnam-online-betting-market-insight__section--faq {
    background-color: var(--bg-light);
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fcfcfc;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed to fit content */
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer p {
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-vietnam-online-betting-market-insight h1 {
        font-size: 2.8em;
    }
    .page-resources-vietnam-online-betting-market-insight h2 {
        font-size: 2em;
    }
    .page-resources-vietnam-online-betting-market-insight h3 {
        font-size: 1.5em;
    }
    .page-resources-vietnam-online-betting-market-insight__hero-content p {
        font-size: 1.1em;
    }
    .page-resources-vietnam-online-betting-market-insight__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-resources-vietnam-online-betting-market-insight__section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .page-resources-vietnam-online-betting-market-insight h1 {
        font-size: 2.2em;
    }
    .page-resources-vietnam-online-betting-market-insight h2 {
        font-size: 1.8em;
    }
    .page-resources-vietnam-online-betting-market-insight h3 {
        font-size: 1.3em;
    }
    .page-resources-vietnam-online-betting-market-insight p,
    .page-resources-vietnam-online-betting-market-insight ul,
    .page-resources-vietnam-online-betting-market-insight ol {
        font-size: 1em;
    }
    .page-resources-vietnam-online-betting-market-insight__hero-content {
        margin-bottom: 20px;
    }
    .page-resources-vietnam-online-betting-market-insight__cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 1.5em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-vietnam-online-betting-market-insight h1 {
        font-size: 1.8em;
    }
    .page-resources-vietnam-online-betting-market-insight h2 {
        font-size: 1.5em;
    }
    .page-resources-vietnam-online-betting-market-insight h3 {
        font-size: 1.2em;
    }
    .page-resources-vietnam-online-betting-market-insight__section {
        padding: 30px 0;
    }
    .page-resources-vietnam-online-betting-market-insight__hero-content p {
        font-size: 0.95em;
    }
    .page-resources-vietnam-online-betting-market-insight__cta-button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
    }
    .faq-question h3 {
        margin-bottom: 5px;
    }
    .faq-toggle {
        align-self: flex-end;
        margin-top: -25px; /* Adjust to position correctly */
    }
    .faq-answer {
        padding: 0 15px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 15px;
    }
}