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

/* Base styles for the specific page */
.page-industry-news-latest-regulations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark sections */
}

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

/* Hero Section */
.page-industry-news-latest-regulations__hero-section {
    background: linear-gradient(135deg, #1A2A4A, #3A4A6A); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-industry-news-latest-regulations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* CTA Button */
.page-industry-news-latest-regulations__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1A2A4A; /* Dark blue text */
    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-latest-regulations__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news-latest-regulations__cta-button--center {
    display: block;
    margin: 40px auto;
    width: fit-content;
}

.page-industry-news-latest-regulations__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Content Sections */
.page-industry-news-latest-regulations__content-section {
    padding: 60px 0;
}

.page-industry-news-latest-regulations__section--dark {
    background-color: #1A2A4A;
    color: #f0f0f0;
}

.page-industry-news-latest-regulations__section--light {
    background-color: #f8f8f8;
    color: #333333;
}

.page-industry-news-latest-regulations__section--light .page-industry-news-latest-regulations__section-title,
.page-industry-news-latest-regulations__section--light h3 {
    color: #1A2A4A;
}

.page-industry-news-latest-regulations__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-industry-news-latest-regulations__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-industry-news-latest-regulations__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-industry-news-latest-regulations__image--right {
    float: right;
    margin-left: 30px;
}

.page-industry-news-latest-regulations__image--left {
    float: left;
    margin-right: 30px;
}

.page-industry-news-latest-regulations__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 1.1em;
}

.page-industry-news-latest-regulations__list li {
    margin-bottom: 10px;
}

/* Feature Grid */
.page-industry-news-latest-regulations__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-industry-news-latest-regulations__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #FFFFFF; /* White background for light section */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #333333;
}

.page-industry-news-latest-regulations__feature-item:hover {
    transform: translateY(-10px);
}

.page-industry-news-latest-regulations__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow */
}

.page-industry-news-latest-regulations__feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #1A2A4A;
}

.page-industry-news-latest-regulations__feature-item p {
    font-size: 1em;
    color: #555555;
    text-align: center;
}

/* Final CTA Section */
.page-industry-news-latest-regulations__final-cta-section {
    background: linear-gradient(90deg, #1A2A4A, #3A4A6A); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-industry-news-latest-regulations__final-cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-industry-news-latest-regulations__hero-title {
        font-size: 3em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__image--right,
    .page-industry-news-latest-regulations__image--left {
        float: none;
        margin: 30px auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-industry-news-latest-regulations__hero-section {
        padding: 60px 0;
    }
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-regulations__content-section p,
    .page-industry-news-latest-regulations__list li,
    .page-industry-news-latest-regulations__feature-item p {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news-latest-regulations__final-cta-title {
        font-size: 2.2em;
    }
    .page-industry-news-latest-regulations__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-regulations__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__final-cta-title {
        font-size: 1.8em;
    }
}

/* Clearfix for floated images */
.page-industry-news-latest-regulations__content-section::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure color contrast */
.page-industry-news-latest-regulations__section--dark h2, .page-industry-news-latest-regulations__section--dark h3, .page-industry-news-latest-regulations__section--dark p, .page-industry-news-latest-regulations__section--dark li {
    color: #f0f0f0; /* Light text on dark blue background */
}

.page-industry-news-latest-regulations__section--light h2, .page-industry-news-latest-regulations__section--light h3, .page-industry-news-latest-regulations__section--light p, .page-industry-news-latest-regulations__section--light li {
    color: #333333; /* Dark text on light background */
}

.page-industry-news-latest-regulations__feature-item h3 {
    color: #1A2A4A; /* Dark blue on white background */
}

.page-industry-news-latest-regulations__feature-item p {
    color: #555555; /* Slightly lighter dark text on white background */
}

.page-industry-news-latest-regulations__cta-button {
    color: #1A2A4A; /* Dark blue on gold background */
}