/* style/news-regulatory-policies.css */
.page-news-regulatory-policies {
    font-family: Arial, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main brand color as background */
}

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

.page-news-regulatory-policies__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a304e 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    color: #FFD700; /* Auxiliary color for hero title */
}

.page-news-regulatory-policies__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700;
}

.page-news-regulatory-policies__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #FFFFFF;
}

.page-news-regulatory-policies__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-news-regulatory-policies__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-news-regulatory-policies__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-news-regulatory-policies p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-news-regulatory-policies__list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-news-regulatory-policies__list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-news-regulatory-policies__image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-regulatory-policies__cta-box {
    background-color: #1a304e; /* Darker blue for CTA background */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-news-regulatory-policies__cta-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-news-regulatory-policies__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-news-regulatory-policies__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for button */
    color: #0A192F; /* Main color for button text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news-regulatory-policies__hero-title {
        font-size: 2.5em;
    }

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

    .page-news-regulatory-policies__subsection-title {
        font-size: 1.5em;
    }

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

    .page-news-regulatory-policies__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

    .page-news-regulatory-policies__hero-description,
    .page-news-regulatory-policies p,
    .page-news-regulatory-policies__list li,
    .page-news-regulatory-policies__cta-description {
        font-size: 0.95em;
    }

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

    .page-news-regulatory-policies__subsection-title {
        font-size: 1.3em;
    }

    .page-news-regulatory-policies__cta-title {
        font-size: 1.6em;
    }

    .page-news-regulatory-policies__cta-box {
        padding: 30px 20px;
    }
}