/* style/industry-news-regulatory-updates.css */
.page-industry-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-industry-news-regulatory-updates__hero {
    background: linear-gradient(135deg, #003366, #1a4a7a);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-industry-news-regulatory-updates__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-industry-news-regulatory-updates__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for title */
    line-height: 1.2;
}

.page-industry-news-regulatory-updates__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-industry-news-regulatory-updates__button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    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;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-regulatory-updates__button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-industry-news-regulatory-updates__hero-image-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-industry-news-regulatory-updates__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

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

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

.page-industry-news-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-industry-news-regulatory-updates__introduction p, 
.page-industry-news-regulatory-updates__recent-updates p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-industry-news-regulatory-updates__introduction h3 {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-industry-news-regulatory-updates__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.page-industry-news-regulatory-updates__image--float-right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.page-industry-news-regulatory-updates__key-areas {
    background-color: #f0f5fa;
}

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

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

.page-industry-news-regulatory-updates__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-industry-news-regulatory-updates__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 51, 102, 0.3));
}

.page-industry-news-regulatory-updates__grid-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-industry-news-regulatory-updates__grid-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

.page-industry-news-regulatory-updates__recent-updates h3 {
    font-size: 2em;
    color: #003366;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.page-industry-news-regulatory-updates__recent-updates ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-industry-news-regulatory-updates__recent-updates li {
    background-color: #e6f0fa;
    border-left: 4px solid #FFCC00;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #222;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-industry-news-regulatory-updates__call-to-action {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-industry-news-regulatory-updates__call-to-action .page-industry-news-regulatory-updates__section-title {
    color: #FFCC00;
}

.page-industry-news-regulatory-updates__call-to-action .page-industry-news-regulatory-updates__section-title::after {
    background-color: #ffffff;
}

.page-industry-news-regulatory-updates__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-industry-news-regulatory-updates__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-industry-news-regulatory-updates__button-group .page-industry-news-regulatory-updates__button {
    padding: 15px 25px;
    font-size: 1em;
}

.page-industry-news-regulatory-updates__button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-industry-news-regulatory-updates__button--primary:hover {
    background-color: #e6b800;
}

.page-industry-news-regulatory-updates__button--secondary {
    background-color: #004d99;
    color: #ffffff;
}

.page-industry-news-regulatory-updates__button--secondary:hover {
    background-color: #003a7a;
}

.page-industry-news-regulatory-updates__button--tertiary {
    background-color: #4d7094;
    color: #ffffff;
}

.page-industry-news-regulatory-updates__button--tertiary:hover {
    background-color: #3a5c7c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-regulatory-updates__title {
        font-size: 2.5em;
    }
    .page-industry-news-regulatory-updates__subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__image--float-right {
        float: none;
        width: 80%;
        margin: 30px auto;
    }
    .page-industry-news-regulatory-updates__grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news-regulatory-updates__recent-updates ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-industry-news-regulatory-updates__hero {
        padding: 80px 0;
    }
    .page-industry-news-regulatory-updates__title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__subtitle {
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__section {
        padding: 40px 0;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__introduction p, 
    .page-industry-news-regulatory-updates__recent-updates p {
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__image--center {
        width: 90%;
    }
    .page-industry-news-regulatory-updates__button-group {
        flex-direction: column;
        align-items: center;
    }
    .page-industry-news-regulatory-updates__button-group .page-industry-news-regulatory-updates__button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__subtitle {
        font-size: 0.9em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-industry-news-regulatory-updates__introduction h3 {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__grid-item h3 {
        font-size: 1.3em;
    }
    .page-industry-news-regulatory-updates__recent-updates h3 {
        font-size: 1.6em;
    }
    .page-industry-news-regulatory-updates__call-to-action p {
        font-size: 1em;
    }
}