/* style/industry-news-latest-regulations.css */
.page-industry-news-latest-regulations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #001a33; /* Darker variant of primary color */
}

.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, #003366, #001a33);
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-industry-news-latest-regulations__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-left: 20px;
}

.page-industry-news-latest-regulations__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFCC00; /* Accent color for title */
    line-height: 1.2;
}

.page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-industry-news-latest-regulations__hero-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-industry-news-latest-regulations__hero-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding-right: 20px;
}

.page-industry-news-latest-regulations__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-industry-news-latest-regulations__introduction,
.page-industry-news-latest-regulations__main-content,
.page-industry-news-latest-regulations__ku3933-commitment,
.page-industry-news-latest-regulations__cta-section,
.page-industry-news-latest-regulations__related-links {
    padding: 60px 0;
    background-color: #001a33; /* Consistent dark background */
}

.page-industry-news-latest-regulations__section-title {
    font-size: 2.5em;
    color: #FFCC00;
    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: #003366;
    border-radius: 2px;
}

.page-industry-news-latest-regulations__introduction p,
.page-industry-news-latest-regulations__main-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Article Styling */
.page-industry-news-latest-regulations__article {
    background-color: #002244; /* Slightly lighter dark background for articles */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-regulations__article-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 20px;
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
}

.page-industry-news-latest-regulations__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Commitment Section */
.page-industry-news-latest-regulations__ku3933-commitment {
    background-color: #002244;
}

.page-industry-news-latest-regulations__commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-industry-news-latest-regulations__commitment-list li {
    background-color: #003366;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
}

.page-industry-news-latest-regulations__commitment-list li strong {
    color: #FFCC00;
    margin-right: 10px;
    flex-shrink: 0;
}

/* CTA Section */
.page-industry-news-latest-regulations__cta-section {
    background: linear-gradient(to right, #003366, #FFCC00);
    color: #ffffff;
    text-align: center;
}

.page-industry-news-latest-regulations__cta-section .page-industry-news-latest-regulations__section-title {
    color: #ffffff;
}

.page-industry-news-latest-regulations__cta-section .page-industry-news-latest-regulations__section-title::after {
    background-color: #FFCC00;
}

.page-industry-news-latest-regulations__cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-industry-news-latest-regulations__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 10px;
    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.2);
}

.page-industry-news-latest-regulations__cta-button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-industry-news-latest-regulations__cta-button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news-latest-regulations__cta-button--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-industry-news-latest-regulations__cta-button--secondary:hover {
    background-color: #004488;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Related Links Section */
.page-industry-news-latest-regulations__related-links {
    background-color: #001a33;
    border-top: 1px solid #003366;
}

.page-industry-news-latest-regulations__links-list {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-industry-news-latest-regulations__links-list li {
    margin: 0;
}

.page-industry-news-latest-regulations__link {
    color: #FFCC00;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 15px;
    border: 1px solid #003366;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-industry-news-latest-regulations__link:hover {
    background-color: #003366;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-latest-regulations__hero-section {
        flex-direction: column;
        text-align: center;
    }

    .page-industry-news-latest-regulations__hero-content {
        padding-left: 0;
        text-align: center;
    }

    .page-industry-news-latest-regulations__hero-image-container {
        padding-right: 0;
        margin-top: 40px;
    }

    .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__article-title {
        font-size: 1.5em;
    }

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

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

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

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

    .page-industry-news-latest-regulations__article {
        padding: 20px;
    }

    .page-industry-news-latest-regulations__commitment-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-industry-news-latest-regulations__commitment-list li strong {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .page-industry-news-latest-regulations__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-industry-news-latest-regulations__link {
        padding: 8px 12px;
        font-size: 1em;
    }
}

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

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

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

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

    .page-industry-news-latest-regulations__article-title {
        font-size: 1.3em;
    }

    .page-industry-news-latest-regulations__introduction p,
    .page-industry-news-latest-regulations__main-content p,
    .page-industry-news-latest-regulations__ku3933-commitment p {
        font-size: 0.95em;
    }

    .page-industry-news-latest-regulations__cta-button {
        width: 100%;
        max-width: 280px;
    }
}