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

/* Base styles for the page content area */
.page-industry-news-latest-regulations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds, high contrast */
    background-color: #f9f9f9; /* Light background for contrast */
}

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

/* Hero Section */
.page-industry-news-latest-regulations__hero {
    background-color: #0A2342; /* Primary color background */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-industry-news-latest-regulations__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

.page-industry-news-latest-regulations__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Slightly off-white for softer look */
}

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

/* Section Styles */
.page-industry-news-latest-regulations__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-industry-news-latest-regulations__section--dark {
    background-color: #0A2342;
    color: #E0E0E0;
}

.page-industry-news-latest-regulations__section--dark h2,
.page-industry-news-latest-regulations__section--dark h3 {
    color: #FFD700;
}

.page-industry-news-latest-regulations__section--highlight {
    background-color: #f0f8ff; /* A very light blue to differentiate */
    color: #333333;
}

.page-industry-news-latest-regulations__section h2 {
    font-size: 2.5em;
    color: #0A2342;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

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

.page-industry-news-latest-regulations__section--dark h2::after {
    background-color: #FFD700;
}

.page-industry-news-latest-regulations__section h3 {
    font-size: 1.8em;
    color: #0A2342;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-industry-news-latest-regulations__section--dark h3 {
    color: #FFD700;
}

.page-industry-news-latest-regulations__section p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-industry-news-latest-regulations__section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-industry-news-latest-regulations__section ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* Buttons */
.page-industry-news-latest-regulations__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-industry-news-latest-regulations__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
}

.page-industry-news-latest-regulations__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #000000;
}

.page-industry-news-latest-regulations__btn--secondary {
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-industry-news-latest-regulations__btn--secondary:hover {
    background-color: #1a3a63; /* Lighter dark blue on hover */
    color: #FFFFFF;
}

.page-industry-news-latest-regulations__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 40px;
}

/* Image styling */
.page-industry-news-latest-regulations__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-regulations__image--left {
    float: left;
    margin-right: 30px;
    width: 40%; /* Adjust as needed */
}

.page-industry-news-latest-regulations__image--right {
    float: right;
    margin-left: 30px;
    width: 40%; /* Adjust as needed */
}

/* CTA box */
.page-industry-news-latest-regulations__cta-box {
    background-color: #1a3a63; /* Slightly lighter dark blue */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    color: #E0E0E0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-regulations__cta-box p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #FFFFFF;
}

/* FAQ Section */
.page-industry-news-latest-regulations__faq {
    margin-top: 30px;
}

.page-industry-news-latest-regulations__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-industry-news-latest-regulations__faq-item h3 {
    color: #0A2342;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-industry-news-latest-regulations__faq-item p {
    color: #555555;
    font-size: 1.05em;
}

/* Utility classes */
.page-industry-news-latest-regulations__text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-latest-regulations__hero h1 {
        font-size: 2.5em;
    }
    .page-industry-news-latest-regulations__section h2 {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__section h3 {
        font-size: 1.6em;
    }
    .page-industry-news-latest-regulations__image--left,
    .page-industry-news-latest-regulations__image--right {
        float: none;
        margin: 30px auto;
        width: 80%;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-industry-news-latest-regulations__hero {
        padding: 60px 0;
    }
    .page-industry-news-latest-regulations__hero h1 {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__hero p {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__section {
        padding: 40px 0;
    }
    .page-industry-news-latest-regulations__section h2 {
        font-size: 1.8em;
    }
    .page-industry-news-latest-regulations__section h3 {
        font-size: 1.4em;
    }
    .page-industry-news-latest-regulations__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-industry-news-latest-regulations__cta-box {
        padding: 30px;
    }
    .page-industry-news-latest-regulations__cta-box p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-regulations__hero h1 {
        font-size: 1.8em;
    }
    .page-industry-news-latest-regulations__section h2 {
        font-size: 1.6em;
    }
    .page-industry-news-latest-regulations__section h3 {
        font-size: 1.2em;
    }
    .page-industry-news-latest-regulations__container {
        padding: 0 15px;
    }
    .page-industry-news-latest-regulations__image--left,
    .page-industry-news-latest-regulations__image--right {
        width: 95%;
        margin: 20px auto;
    }
}