/* style/industry-news-regulatory-updates.css */

/* Variables for colors */
:root {
    --page-primary-color: #003366; /* Deep Sea Blue */
    --page-accent-color: #FFCC00; /* Golden Yellow */
    --page-text-color-dark: #333333; /* Dark Grey for text on light backgrounds */
    --page-text-color-light: #ffffff; /* White for text on dark backgrounds */
    --page-background-light: #f9f9f9; /* Light grey for sections */
    --page-background-dark: #002244; /* Slightly darker blue for contrast sections */
}

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

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

.page-industry-news-regulatory-updates__content-block {
    padding: 40px 0;
}

/* Hero Section */
.page-industry-news-regulatory-updates__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color), #004d99); /* Slightly lighter blue for gradient */
    color: var(--page-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-regulatory-updates__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--page-accent-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: page-industry-news-regulatory-updates-pulse 4s infinite alternate;
}

.page-industry-news-regulatory-updates__hero-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background-color: var(--page-accent-color);
    opacity: 0.15;
    border-radius: 50%;
    animation: page-industry-news-regulatory-updates-pulse 5s infinite alternate reverse;
}

@keyframes page-industry-news-regulatory-updates-pulse {
    0% { transform: scale(0.8); }
    100% { transform: scale(1.2); }
}


.page-industry-news-regulatory-updates__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-industry-news-regulatory-updates__hero-cta-button {
    display: inline-block;
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    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;
}

.page-industry-news-regulatory-updates__hero-cta-button:hover {
    background-color: #e6b800; /* Slightly darker yellow */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-industry-news-regulatory-updates__section-title {
    font-size: 2.2em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news-regulatory-updates__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-industry-news-regulatory-updates__sub-section-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__paragraph {
    font-size: 1.05em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-industry-news-regulatory-updates__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-industry-news-regulatory-updates__list li {
    margin-bottom: 8px;
}

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

.page-industry-news-regulatory-updates__image--full-width {
    width: 100%;
    margin: 40px 0;
}

/* Dark background sections */
.page-industry-news-regulatory-updates__bg--dark {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
}

.page-industry-news-regulatory-updates__section-title--light {
    color: var(--page-accent-color);
}

.page-industry-news-regulatory-updates__section-title--light::after {
    background-color: var(--page-text-color-light);
}

.page-industry-news-regulatory-updates__sub-section-title--light {
    color: var(--page-accent-color);
}

.page-industry-news-regulatory-updates__paragraph--light {
    color: var(--page-text-color-light);
}

.page-industry-news-regulatory-updates__list--light {
    color: var(--page-text-color-light);
}

/* Accent background section */
.page-industry-news-regulatory-updates__bg--accent {
    background-color: var(--page-accent-color);
    color: var(--page-text-color-dark);
}

.page-industry-news-regulatory-updates__section-title--dark {
    color: var(--page-primary-color);
}

.page-industry-news-regulatory-updates__section-title--dark::after {
    background-color: var(--page-primary-color);
}

.page-industry-news-regulatory-updates__paragraph--dark {
    color: var(--page-text-color-dark);
}

.page-industry-news-regulatory-updates__list--dark {
    color: var(--page-text-color-dark);
}

/* Call to action buttons */
.page-industry-news-regulatory-updates__cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-industry-news-regulatory-updates__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.page-industry-news-regulatory-updates__button--primary {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
    border-color: var(--page-primary-color);
}

.page-industry-news-regulatory-updates__button--primary:hover {
    background-color: #004488;
    transform: translateY(-3px);
}

.page-industry-news-regulatory-updates__button--primary-alt {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    border-color: var(--page-accent-color);
}

.page-industry-news-regulatory-updates__button--primary-alt:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

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

.page-industry-news-regulatory-updates__button--secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
    transform: translateY(-3px);
}

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

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

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

    .page-industry-news-regulatory-updates__sub-section-title {
        font-size: 1.4em;
    }

    .page-industry-news-regulatory-updates__button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

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

    .page-industry-news-regulatory-updates__hero-section {
        padding: 80px 0;
    }

    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.6em;
    }

    .page-industry-news-regulatory-updates__sub-section-title {
        font-size: 1.2em;
    }

    .page-industry-news-regulatory-updates__paragraph,
    .page-industry-news-regulatory-updates__list {
        font-size: 0.95em;
    }
}