/* style/news-industry-regulatory-changes.css */
.page-news-industry-regulatory-changes {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-news-industry-regulatory-changes__hero-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%); /* Dark blue gradient */
    color: #ECF0F1; /* Light gray for text */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-industry-regulatory-changes__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-news-industry-regulatory-changes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-news-industry-regulatory-changes__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ECF0F1; /* Light gray for title */
}

.page-news-industry-regulatory-changes__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
    color: #BDC3C7; /* Slightly darker light gray */
}

.page-news-industry-regulatory-changes__section-title {
    font-size: 2.5em;
    color: #2C3E50; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.page-news-industry-regulatory-changes__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F39C12; /* Accent gold */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-news-industry-regulatory-changes__sub-section-title {
    font-size: 1.8em;
    color: #34495E; /* Medium dark blue */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-news-industry-regulatory-changes__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #4A4A4A; /* Dark gray for readability */
}

.page-news-industry-regulatory-changes__content-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-news-industry-regulatory-changes__content-section--alt {
    background-color: #F9F9F9; /* Light grey background for alternate sections */
}

.page-news-industry-regulatory-changes__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-news-industry-regulatory-changes__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-regulatory-changes__image-caption {
    font-size: 0.9em;
    color: #7F8C8D; /* Gray for captions */
    margin-top: 10px;
}

.page-news-industry-regulatory-changes__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.page-news-industry-regulatory-changes__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-news-industry-regulatory-changes__btn {
    display: inline-block;
    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;
    margin: 10px;
}

.page-news-industry-regulatory-changes__btn--primary {
    background-color: #F39C12; /* Accent gold */
    color: #2C3E50; /* Dark blue for text */
}

.page-news-industry-regulatory-changes__btn--primary:hover {
    background-color: #E67E22; /* Darker gold */
    transform: translateY(-2px);
}

.page-news-industry-regulatory-changes__btn--secondary {
    background-color: transparent;
    color: #F39C12; /* Accent gold */
    border: 2px solid #F39C12;
}

.page-news-industry-regulatory-changes__btn--secondary:hover {
    background-color: #F39C12;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-news-industry-regulatory-changes__btn--tertiary {
    background-color: #34495E; /* Medium dark blue */
    color: #ECF0F1; /* Light gray */
}

.page-news-industry-regulatory-changes__btn--tertiary:hover {
    background-color: #2C3E50; /* Darker blue */
    transform: translateY(-2px);
}

.page-news-industry-regulatory-changes__cta-section {
    background-color: #2C3E50; /* Dark blue background */
    color: #ECF0F1; /* Light gray text */
    padding: 80px 0;
    text-align: center;
}

.page-news-industry-regulatory-changes__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ECF0F1;
}

.page-news-industry-regulatory-changes__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #BDC3C7;
}

.page-news-industry-regulatory-changes__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-news-industry-regulatory-changes .highlight {
    color: #F39C12;
    font-weight: bold;
}

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

    .page-news-industry-regulatory-changes__hero-subtitle {
        font-size: 1.2em;
    }

    .page-news-industry-regulatory-changes__section-title {
        font-size: 2em;
    }

    .page-news-industry-regulatory-changes__sub-section-title {
        font-size: 1.5em;
    }

    .page-news-industry-regulatory-changes__paragraph,
    .page-news-industry-regulatory-changes__list li {
        font-size: 1em;
    }

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

    .page-news-industry-regulatory-changes__cta-title {
        font-size: 2.2em;
    }

    .page-news-industry-regulatory-changes__cta-text {
        font-size: 1em;
    }
}

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

    .page-news-industry-regulatory-changes__hero-subtitle {
        font-size: 1em;
    }

    .page-news-industry-regulatory-changes__section-title {
        font-size: 1.8em;
    }

    .page-news-industry-regulatory-changes__sub-section-title {
        font-size: 1.3em;
    }

    .page-news-industry-regulatory-changes__btn {
        width: 100%;
        margin: 10px 0;
    }

    .page-news-industry-regulatory-changes__cta-buttons {
        flex-direction: column;
    }
}