/* style/industry-insights-regulatory-updates.css */

/* Base Styles & Typography */
.page-industry-insights-regulatory-updates {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

.page-industry-insights-regulatory-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-industry-insights-regulatory-updates__section:last-of-type {
    border-bottom: none;
}

.page-industry-insights-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #000080; /* Navy blue for headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-insights-regulatory-updates__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-industry-insights-regulatory-updates h3 {
    font-size: 1.8em;
    color: #000080;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-insights-regulatory-updates p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-industry-insights-regulatory-updates__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-industry-insights-regulatory-updates__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-industry-insights-regulatory-updates__text-center {
    text-align: center;
}

/* Hero Section */
.page-industry-insights-regulatory-updates__hero-section {
    background: linear-gradient(135deg, #000080, #333399); /* Darker blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

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

.page-industry-insights-regulatory-updates__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Buttons */
.page-industry-insights-regulatory-updates__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-industry-insights-regulatory-updates__btn--primary {
    background-color: #FFD700;
    color: #000080; /* Navy blue text on gold button */
    border: 2px solid #FFD700;
}

.page-industry-insights-regulatory-updates__btn--primary:hover {
    background-color: #e6c200;
    color: #000055;
}

.page-industry-insights-regulatory-updates__btn--secondary {
    background-color: transparent;
    color: #000080; /* Navy blue text */
    border: 2px solid #000080;
}

.page-industry-insights-regulatory-updates__btn--secondary:hover {
    background-color: #000080;
    color: #FFD700; /* Gold text on navy blue hover */
}

.page-industry-insights-regulatory-updates__btn--hero {
    background-color: #FFD700;
    color: #000080;
    border: 2px solid #FFD700;
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 20px;
}

.page-industry-insights-regulatory-updates__btn--hero:hover {
    background-color: #e6c200;
    color: #000055;
}

/* Image Styling */
.page-industry-insights-regulatory-updates__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-industry-insights-regulatory-updates__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.page-industry-insights-regulatory-updates__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-industry-insights-regulatory-updates__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-insights-regulatory-updates__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-industry-insights-regulatory-updates__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2)); /* Add some shadow for depth */
}

.page-industry-insights-regulatory-updates__feature-title {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 10px;
}

.page-industry-insights-regulatory-updates__feature-item p {
    font-size: 1em;
    color: #666;
}

/* CTA Section */
.page-industry-insights-regulatory-updates__cta-section {
    background-color: #000080; /* Navy blue background */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-industry-insights-regulatory-updates__cta-section .page-industry-insights-regulatory-updates__section-title {
    color: #FFD700; /* Gold title on navy background */
}

.page-industry-insights-regulatory-updates__cta-section .page-industry-insights-regulatory-updates__section-title::after {
    background-color: #FFFFFF;
}

.page-industry-insights-regulatory-updates__cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-industry-insights-regulatory-updates__cta-small-text {
    font-size: 1em;
    margin-top: 20px;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-insights-regulatory-updates__hero-title {
        font-size: 2.8em;
    }
    .page-industry-insights-regulatory-updates__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-insights-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-industry-insights-regulatory-updates__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-industry-insights-regulatory-updates__hero-title {
        font-size: 2.2em;
    }
    .page-industry-insights-regulatory-updates__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-insights-regulatory-updates__section {
        padding: 40px 0;
    }
    .page-industry-insights-regulatory-updates__section-title {
        font-size: 1.8em;
    }
    .page-industry-insights-regulatory-updates h3 {
        font-size: 1.5em;
    }
    .page-industry-insights-regulatory-updates__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-insights-regulatory-updates__btn--hero {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-industry-insights-regulatory-updates__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-regulatory-updates__hero-title {
        font-size: 1.8em;
    }
    .page-industry-insights-regulatory-updates__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-insights-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-industry-insights-regulatory-updates__list {
        padding-left: 20px;
    }
}