/* style/latest-news-regulatory-changes.css */

/* Variables for consistent styling */
:root {
    --page-primary-color: #003366;
    --page-accent-color: #FFD700;
    --page-text-color-dark: #333333;
    --page-text-color-light: #ffffff;
    --page-background-light: #f9f9f9;
    --page-background-alt: #e6eef7; /* Lighter shade of primary for alt background */
    --page-link-color: var(--page-primary-color);
    --page-link-hover-color: #001a33;
}

.page-latest-news-regulatory-changes {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-color-dark);
    background-color: var(--page-background-light);
}

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

/* Hero Section */
.page-latest-news-regulatory-changes__hero {
    position: relative;
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-latest-news-regulatory-changes__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-latest-news-regulatory-changes__hero > .page-latest-news-regulatory-changes__container {
    position: relative;
    z-index: 1;
}

.page-latest-news-regulatory-changes__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-text-color-light);
    line-height: 1.2;
}

.page-latest-news-regulatory-changes__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.page-latest-news-regulatory-changes__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-latest-news-regulatory-changes__btn--primary {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    border-color: var(--page-accent-color);
}

.page-latest-news-regulatory-changes__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-latest-news-regulatory-changes__btn--secondary {
    background-color: transparent;
    color: var(--page-primary-color);
    border-color: var(--page-primary-color);
}

.page-latest-news-regulatory-changes__btn--secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
    transform: translateY(-2px);
}

.page-latest-news-regulatory-changes__cta-buttons .page-latest-news-regulatory-changes__btn--secondary {
    color: var(--page-primary-color);
    background-color: var(--page-background-light);
    border-color: var(--page-primary-color);
    margin-left: 15px;
}

.page-latest-news-regulatory-changes__cta-buttons .page-latest-news-regulatory-changes__btn--secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
}

/* Sections */
.page-latest-news-regulatory-changes__section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-latest-news-regulatory-changes__section--alt-bg {
    background-color: var(--page-background-alt);
}

.page-latest-news-regulatory-changes__section-title {
    font-size: 2.2em;
    color: var(--page-primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-latest-news-regulatory-changes__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    border-radius: 2px;
}

.page-latest-news-regulatory-changes__sub-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-latest-news-regulatory-changes__intro-text p,
.page-latest-news-regulatory-changes__section p {
    font-size: 1.05em;
    margin-bottom: 1em;
    color: var(--page-text-color-dark);
}

.page-latest-news-regulatory-changes__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-latest-news-regulatory-changes__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--page-text-color-dark);
}

/* Images */
.page-latest-news-regulatory-changes__image--inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-latest-news-regulatory-changes__cta {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
    padding: 70px 0;
    text-align: center;
}

.page-latest-news-regulatory-changes__cta .page-latest-news-regulatory-changes__section-title {
    color: var(--page-text-color-light);
}

.page-latest-news-regulatory-changes__cta .page-latest-news-regulatory-changes__section-title::after {
    background-color: var(--page-accent-color);
}

.page-latest-news-regulatory-changes__cta p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-latest-news-regulatory-changes__hero {
        padding: 60px 0;
    }

    .page-latest-news-regulatory-changes__hero-title {
        font-size: 2em;
    }

    .page-latest-news-regulatory-changes__hero-description {
        font-size: 1em;
    }

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

    .page-latest-news-regulatory-changes__sub-title {
        font-size: 1.4em;
    }

    .page-latest-news-regulatory-changes__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .page-latest-news-regulatory-changes__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-latest-news-regulatory-changes__cta-buttons .page-latest-news-regulatory-changes__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

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

    .page-latest-news-regulatory-changes__hero-description {
        font-size: 0.9em;
    }

    .page-latest-news-regulatory-changes__section-title {
        font-size: 1.5em;
    }

    .page-latest-news-regulatory-changes__sub-title {
        font-size: 1.2em;
    }
}