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

.page-industry-news-regulatory-updates__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #0A2342; /* Fallback for image */
}

.page-industry-news-regulatory-updates__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-industry-news-regulatory-updates__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.8), rgba(255, 215, 0, 0.4));
    z-index: 2;
}

.page-industry-news-regulatory-updates__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.page-industry-news-regulatory-updates__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-industry-news-regulatory-updates__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-industry-news-regulatory-updates__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-news-regulatory-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-industry-news-regulatory-updates__section:last-of-type {
    border-bottom: none;
}

.page-industry-news-regulatory-updates__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-industry-news-regulatory-updates__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-industry-news-regulatory-updates__sub-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-industry-news-regulatory-updates__section p {
    margin-bottom: 15px;
    color: #495057;
    font-size: 1.1em;
}

.page-industry-news-regulatory-updates__inline-cta {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.page-industry-news-regulatory-updates__inline-cta:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-industry-news-regulatory-updates__image--right {
    float: right;
    margin: 0 0 20px 30px;
    width: 40%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-regulatory-updates__image--left {
    float: left;
    margin: 0 30px 20px 0;
    width: 40%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-industry-news-regulatory-updates__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-industry-news-regulatory-updates__faq-question {
    font-size: 1.3em;
    color: #0A2342;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-industry-news-regulatory-updates__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-industry-news-regulatory-updates__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-industry-news-regulatory-updates__faq-answer {
    font-size: 1.1em;
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-industry-news-regulatory-updates__faq-answer.active {
    display: block;
}

.page-industry-news-regulatory-updates__cta-final {
    background-color: #0A2342;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-industry-news-regulatory-updates__cta-final .page-industry-news-regulatory-updates__section-title {
    color: #FFD700;
}

.page-industry-news-regulatory-updates__cta-final .page-industry-news-regulatory-updates__section-title::after {
    background-color: #fff;
}

.page-industry-news-regulatory-updates__cta-final p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-industry-news-regulatory-updates__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-industry-news-regulatory-updates__cta-button--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-industry-news-regulatory-updates__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-industry-news-regulatory-updates__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-industry-news-regulatory-updates__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-industry-news-regulatory-updates__image--cta {
    max-width: 600px;
    width: 100%;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Clearfix for floated images */
.page-industry-news-regulatory-updates__overview::after,
.page-industry-news-regulatory-updates__privacy::after,
.page-industry-news-regulatory-updates__responsible-gaming::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 992px) {
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__sub-title {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__image--right,
    .page-industry-news-regulatory-updates__image--left {
        float: none;
        margin: 20px auto;
        width: 80%;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-industry-news-regulatory-updates__hero {
        height: 400px;
    }
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__section {
        padding: 40px 0;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news-regulatory-updates__section p {
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__button-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__hero {
        height: 350px;
    }
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news-regulatory-updates__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__sub-title {
        font-size: 1.2em;
    }
    .page-industry-news-regulatory-updates__image--right,
    .page-industry-news-regulatory-updates__image--left {
        width: 95%;
    }
}