/* style/industry-news-trends-regulatory-updates.css */

.page-industry-news-trends-regulatory-updates {
    font-family: 'Arial', sans-serif;
    color: #546474; /* Lighter text for contrast on dark sections */
    line-height: 1.6;
}

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

.page-industry-news-trends-regulatory-updates .hero-section {
    background: linear-gradient(135deg, #0A2239, #3A5F7D); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.page-industry-news-trends-regulatory-updates .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B44B;
    line-height: 1.2;
}

.page-industry-news-trends-regulatory-updates .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-trends-regulatory-updates .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-industry-news-trends-regulatory-updates .btn-primary {
    background-color: #E0B44B; /* Auxiliary gold */
    color: #0A2239; /* Main dark blue */
    border: 2px solid #E0B44B;
}

.page-industry-news-trends-regulatory-updates .btn-primary:hover {
    background-color: #C09A3A;
    transform: translateY(-3px);
}

.page-industry-news-trends-regulatory-updates .btn-secondary {
    background-color: transparent;
    color: #E0B44B;
    border: 2px solid #E0B44B;
}

.page-industry-news-trends-regulatory-updates .btn-secondary:hover {
    background-color: #E0B44B;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-industry-news-trends-regulatory-updates .btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-industry-news-trends-regulatory-updates .introduction-section,
.page-industry-news-trends-regulatory-updates .overview-section,
.page-industry-news-trends-regulatory-updates .challenges-opportunities-section,
.page-industry-news-trends-regulatory-updates .conclusion-section {
    padding: 80px 0;
    background-color: #F8F8F8;
    color: #0A2239;
}

.page-industry-news-trends-regulatory-updates .impact-section,
.page-industry-news-trends-regulatory-updates .future-trends-section {
    padding: 80px 0;
    background-color: #0A2239; /* Main dark blue */
    color: #FFFFFF;
}

.page-industry-news-trends-regulatory-updates .section-title {
    font-size: 2.5em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-industry-news-trends-regulatory-updates .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B44B;
    margin: 20px auto 0 auto;
}

.page-industry-news-trends-regulatory-updates .bg-dark .section-title {
    color: #E0B44B;
}

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

.page-industry-news-trends-regulatory-updates .grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #0A2239;
}

.page-industry-news-trends-regulatory-updates .bg-dark .grid-item {
    background-color: #1A3A54;
    color: #FFFFFF;
}

.page-industry-news-trends-regulatory-updates .item-title {
    font-size: 1.8em;
    color: #E0B44B;
    margin-bottom: 20px;
}

.page-industry-news-trends-regulatory-updates p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-industry-news-trends-regulatory-updates ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-industry-news-trends-regulatory-updates ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.page-industry-news-trends-regulatory-updates .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-industry-news-trends-regulatory-updates .cta-final {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #0A2239;
}

.page-industry-news-trends-regulatory-updates .conclusion-section .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

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

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

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

    .page-industry-news-trends-regulatory-updates .item-title {
        font-size: 1.5em;
    }

    .page-industry-news-trends-regulatory-updates .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-industry-news-trends-regulatory-updates .hero-section {
        padding: 60px 0;
    }

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

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

    .page-industry-news-trends-regulatory-updates .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news-trends-regulatory-updates .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .page-industry-news-trends-regulatory-updates .introduction-section,
    .page-industry-news-trends-regulatory-updates .overview-section,
    .page-industry-news-trends-regulatory-updates .challenges-opportunities-section,
    .page-industry-news-trends-regulatory-updates .conclusion-section,
    .page-industry-news-trends-regulatory-updates .impact-section,
    .page-industry-news-trends-regulatory-updates .future-trends-section {
        padding: 50px 0;
    }
}