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

.page-industry-news-latest-regulations {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-industry-news-latest-regulations__hero-section {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-latest-regulations__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(20deg);
    z-index: 0;
}

.page-industry-news-latest-regulations__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-industry-news-latest-regulations__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #007BFF;
    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;
    position: relative;
    z-index: 1;
    border: 2px solid #FFD700; /* Ensure visibility */
}

.page-industry-news-latest-regulations__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-news-latest-regulations__cta-button--bottom {
    margin-top: 40px;
}

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

.page-industry-news-latest-regulations__section--white-bg {
    background-color: #ffffff;
}

.page-industry-news-latest-regulations__section--gold-bg {
    background-color: #fffde7; /* Lighter variant of FFD700 for background */
    color: #333333;
}

.page-industry-news-latest-regulations__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news-latest-regulations__section-subtitle {
    font-size: 1.8em;
    color: #0056b3; /* Darker blue for subheadings */
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-industry-news-latest-regulations__content-section p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #333333;
}

.page-industry-news-latest-regulations__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333333;
}

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

.page-industry-news-latest-regulations__list li strong {
    color: #007BFF;
}

.page-industry-news-latest-regulations__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

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

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

    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 1.1em;
    }

    .page-industry-news-latest-regulations__section-title {
        font-size: 2em;
    }

    .page-industry-news-latest-regulations__section-subtitle {
        font-size: 1.5em;
    }

    .page-industry-news-latest-regulations__content-section p,
    .page-industry-news-latest-regulations__list {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-latest-regulations__hero-section {
        padding: 80px 0;
    }

    .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.8em;
    }

    .page-industry-news-latest-regulations__section-subtitle {
        font-size: 1.3em;
    }
}

@media (max-width: 576px) {
    .page-industry-news-latest-regulations__hero-section {
        padding: 60px 0;
    }

    .page-industry-news-latest-regulations__hero-title {
        font-size: 1.8em;
    }

    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 0.9em;
    }

    .page-industry-news-latest-regulations__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news-latest-regulations__section-title {
        font-size: 1.5em;
    }

    .page-industry-news-latest-regulations__section-subtitle {
        font-size: 1.2em;
    }

    .page-industry-news-latest-regulations__content-section p,
    .page-industry-news-latest-regulations__list {
        font-size: 0.95em;
    }
}