/* style/industry-news-latest-regulatory-policies.css */
.page-industry-news-latest-regulatory-policies {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-industry-news-latest-regulatory-policies .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-latest-regulatory-policies .hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #2a4a8d 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-industry-news-latest-regulatory-policies .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
}

.page-industry-news-latest-regulatory-policies .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-latest-regulatory-policies .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-industry-news-latest-regulatory-policies .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-industry-news-latest-regulatory-policies .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-industry-news-latest-regulatory-policies .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-industry-news-latest-regulatory-policies .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-industry-news-latest-regulatory-policies .introduction-section,
.page-industry-news-latest-regulatory-policies .global-trends-section,
.page-industry-news-latest-regulatory-policies .regional-policies-section,
.page-industry-news-latest-regulatory-policies .lucky8-compliance-section,
.page-industry-news-latest-regulatory-policies .responsible-gambling-section,
.page-industry-news-latest-regulatory-policies .future-outlook-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-industry-news-latest-regulatory-policies .introduction-section:nth-child(even),
.page-industry-news-latest-regulatory-policies .regional-policies-section:nth-child(even),
.page-industry-news-latest-regulatory-policies .responsible-gambling-section:nth-child(even) {
    background-color: #f2f5fa; /* Light blue-gray for alternating sections */
}

.page-industry-news-latest-regulatory-policies .section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-industry-news-latest-regulatory-policies .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.page-industry-news-latest-regulatory-policies h3 {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-industry-news-latest-regulatory-policies p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-industry-news-latest-regulatory-policies .bullet-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-industry-news-latest-regulatory-policies .bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-industry-news-latest-regulatory-policies .bullet-list li::before {
    content: '✔️'; /* Checkmark icon */
    color: #FFD700; /* Gold checkmark */
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}

.page-industry-news-latest-regulatory-policies .content-image {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-regulatory-policies .cta-group {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-latest-regulatory-policies .hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-latest-regulatory-policies .hero-subtitle {
        font-size: 1.2em;
    }

    .page-industry-news-latest-regulatory-policies .section-title {
        font-size: 2em;
    }

    .page-industry-news-latest-regulatory-policies h3 {
        font-size: 1.5em;
    }

    .page-industry-news-latest-regulatory-policies .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news-latest-regulatory-policies .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-industry-news-latest-regulatory-policies .cta-group .btn {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-regulatory-policies .hero-title {
        font-size: 2em;
    }

    .page-industry-news-latest-regulatory-policies .hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news-latest-regulatory-policies .section-title {
        font-size: 1.8em;
    }

    .page-industry-news-latest-regulatory-policies h3 {
        font-size: 1.3em;
    }

    .page-industry-news-latest-regulatory-policies p,
    .page-industry-news-latest-regulatory-policies .bullet-list li {
        font-size: 0.95em;
    }

    .page-industry-news-latest-regulatory-policies .hero-section,
    .page-industry-news-latest-regulatory-policies .introduction-section,
    .page-industry-news-latest-regulatory-policies .global-trends-section,
    .page-industry-news-latest-regulatory-policies .regional-policies-section,
    .page-industry-news-latest-regulatory-policies .lucky8-compliance-section,
    .page-industry-news-latest-regulatory-policies .responsible-gambling-section,
    .page-industry-news-latest-regulatory-policies .future-outlook-section {
        padding: 40px 0;
    }
}