/* style/industry-news-regulatory-updates.css */
.page-industry-news-regulatory-updates {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
}

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

.page-industry-news-regulatory-updates__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Dark blue gradient */
    color: #FFD700; /* Gold text for hero */
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #FFD700; /* Gold border */
}

.page-industry-news-regulatory-updates__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-regulatory-updates__hero-subtitle {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
    color: #f5e6d0;
}

.page-industry-news-regulatory-updates__content-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-industry-news-regulatory-updates__article {
    background-color: #1a2a44; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-industry-news-regulatory-updates__sub-section-title {
    font-size: 2em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__article p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-industry-news-regulatory-updates__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-industry-news-regulatory-updates__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-industry-news-regulatory-updates__list strong {
    color: #FFD700;
}

.page-industry-news-regulatory-updates__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-industry-news-regulatory-updates__cta-block {
    background-color: #0028ff; /* Complementary blue for CTA block */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-industry-news-regulatory-updates__cta-text {
    font-size: 1.8em;
    color: #ffffff; /* White text for CTA */
    margin-bottom: 25px;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-industry-news-regulatory-updates__faq-item {
    background-color: #2a3d5e; /* Medium dark blue for FAQ items */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #FFD700; /* Gold accent */
}

.page-industry-news-regulatory-updates__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-industry-news-regulatory-updates__faq-answer {
    font-size: 1.1em;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 1.2em;
    }

    .page-industry-news-regulatory-updates__section-title {
        font-size: 2em;
    }

    .page-industry-news-regulatory-updates__sub-section-title {
        font-size: 1.6em;
    }

    .page-industry-news-regulatory-updates__article {
        padding: 20px;
    }

    .page-industry-news-regulatory-updates__cta-text {
        font-size: 1.4em;
    }

    .page-industry-news-regulatory-updates__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2em;
    }

    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-regulatory-updates__sub-section-title {
        font-size: 1.4em;
    }

    .page-industry-news-regulatory-updates__article p,
    .page-industry-news-regulatory-updates__list li,
    .page-industry-news-regulatory-updates__faq-answer {
        font-size: 1em;
    }

    .page-industry-news-regulatory-updates__cta-text {
        font-size: 1.2em;
    }

    .page-industry-news-regulatory-updates__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}