/* style/industry-news-regulatory-updates.css */
.page-industry-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #0A192F; /* Dark blue background */
}

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

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

.page-industry-news-regulatory-updates-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for title */
}

.page-industry-news-regulatory-updates-hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0; /* Light gray for subtitle */
}

.page-industry-news-regulatory-updates-hero-button,
.page-industry-news-regulatory-updates-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on button */
    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;
    border: none;
    cursor: pointer;
}

.page-industry-news-regulatory-updates-hero-button:hover,
.page-industry-news-regulatory-updates-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-industry-news-regulatory-updates-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-industry-news-regulatory-updates-section:last-of-type {
    border-bottom: none;
}

.page-industry-news-regulatory-updates-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
}

.page-industry-news-regulatory-updates-subtitle {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subtitles */
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates-paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light gray for paragraphs */
}

.page-industry-news-regulatory-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-industry-news-regulatory-updates-card {
    background-color: #1a2a47; /* Slightly lighter dark blue for cards */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-industry-news-regulatory-updates-card:hover {
    transform: translateY(-5px);
}

.page-industry-news-regulatory-updates-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates-card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-industry-news-regulatory-updates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-industry-news-regulatory-updates-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #E0E0E0; /* Light gray for list items */
}

.page-industry-news-regulatory-updates-list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold checkmark */
}

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

.page-industry-news-regulatory-updates-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-industry-news-regulatory-updates-conclusion .primary-cta {
    font-size: 1.2em;
    padding: 18px 35px;
    background-color: #FFD700;
    color: #0A192F;
}

.page-industry-news-regulatory-updates-conclusion .primary-cta:hover {
    background-color: #e6c200;
}

.page-industry-news-regulatory-updates .highlight {
    color: #FFD700;
    font-weight: bold;
}

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

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

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

    .page-industry-news-regulatory-updates-subtitle {
        font-size: 1.5em;
    }

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

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

    .page-industry-news-regulatory-updates-hero-button,
    .page-industry-news-regulatory-updates-button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-industry-news-regulatory-updates-paragraph {
        font-size: 0.95em;
    }
}