/* style/industry-news-latest-regulations.css */

/* Variables for colors */
:root {
    --page-industry-news-latest-regulations-primary-color: #FFD700; /* Gold */
    --page-industry-news-latest-regulations-secondary-color: #000080; /* Dark Blue */
    --page-industry-news-latest-regulations-text-dark: #333333; /* Dark text for light backgrounds */
    --page-industry-news-latest-regulations-text-light: #ffffff; /* Light text for dark backgrounds */
    --page-industry-news-latest-regulations-accent-color: #0028ff; /* Complementary to gold for emphasis */
    --page-industry-news-latest-regulations-background-light: #f8f8f8;
    --page-industry-news-latest-regulations-background-dark: #1a1a3a; /* Slightly lighter dark blue for sections */
}

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

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

/* Hero Section */
.page-industry-news-latest-regulations__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--page-industry-news-latest-regulations-primary-color), var(--page-industry-news-latest-regulations-secondary-color));
    color: var(--page-industry-news-latest-regulations-text-light);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-industry-news-latest-regulations__hero-content {
    z-index: 1;
    max-width: 900px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.page-industry-news-latest-regulations--loaded .page-industry-news-latest-regulations__hero-content {
    opacity: 1;
    transform: translateY(0);
}

.page-industry-news-latest-regulations__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-industry-news-latest-regulations-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-latest-regulations__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-industry-news-latest-regulations__hero-button {
    display: inline-block;
    background-color: var(--page-industry-news-latest-regulations-primary-color);
    color: var(--page-industry-news-latest-regulations-secondary-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;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-regulations__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-industry-news-latest-regulations__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-industry-news-latest-regulations__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styling */
.page-industry-news-latest-regulations__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-industry-news-latest-regulations__section.page-industry-news-latest-regulations--fade-in {
    opacity: 1;
    transform: translateY(0);
}

.page-industry-news-latest-regulations__section:last-of-type {
    border-bottom: none;
}

.page-industry-news-latest-regulations__section-title {
    font-size: 2.5em;
    color: var(--page-industry-news-latest-regulations-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-industry-news-latest-regulations__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-industry-news-latest-regulations-primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-industry-news-latest-regulations__subsection-title {
    font-size: 1.8em;
    color: var(--page-industry-news-latest-regulations-secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-latest-regulations__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-industry-news-latest-regulations__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-industry-news-latest-regulations__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--page-industry-news-latest-regulations-text-dark);
}

.page-industry-news-latest-regulations__list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--page-industry-news-latest-regulations-primary-color);
    font-size: 1.2em;
    line-height: 1;
}

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

/* Buttons */
.page-industry-news-latest-regulations__button-primary,
.page-industry-news-latest-regulations__button-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.page-industry-news-latest-regulations__button-primary {
    background-color: var(--page-industry-news-latest-regulations-primary-color);
    color: var(--page-industry-news-latest-regulations-secondary-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news-latest-regulations__button-secondary {
    background-color: var(--page-industry-news-latest-regulations-secondary-color);
    color: var(--page-industry-news-latest-regulations-text-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.page-industry-news-latest-regulations__button-secondary:hover {
    background-color: #000066; /* Slightly darker blue */
    transform: translateY(-2px);
}

/* CTA Section */
.page-industry-news-latest-regulations__cta {
    background: var(--page-industry-news-latest-regulations-background-dark);
    color: var(--page-industry-news-latest-regulations-text-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-industry-news-latest-regulations__cta-content {
    z-index: 1;
    max-width: 800px;
}

.page-industry-news-latest-regulations__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-industry-news-latest-regulations-primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-latest-regulations__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.page-industry-news-latest-regulations__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-latest-regulations__cta-button--register {
    background-color: var(--page-industry-news-latest-regulations-primary-color);
    color: var(--page-industry-news-latest-regulations-secondary-color);
}

.page-industry-news-latest-regulations__cta-button--register:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news-latest-regulations__cta-button--download {
    background-color: var(--page-industry-news-latest-regulations-accent-color); /* Using complementary color for contrast */
    color: var(--page-industry-news-latest-regulations-text-light);
}

.page-industry-news-latest-regulations__cta-button--download:hover {
    background-color: #001fcc;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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


/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-latest-regulations__hero {
        padding: 60px 15px;
    }
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__hero-description {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__section {
        padding: 40px 0;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-regulations__subsection-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-regulations__section p,
    .page-industry-news-latest-regulations__list li {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__cta {
        padding: 60px 15px;
    }
    .page-industry-news-latest-regulations__cta-title {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__cta-description {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news-latest-regulations__cta-button {
        width: 100%;
        max-width: 280px;
        font-size: 1.1em;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-regulations__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-regulations__cta-title {
        font-size: 1.8em;
    }
}