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

/* General styles for the page content area */
.page-industry-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for good contrast on light backgrounds */
    background-color: #f8f8f8; /* Light background for readability */
}

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

/* Hero Section */
.page-industry-news-regulatory-updates__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #004D99, #002D5C); /* Darker blue gradient */
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-industry-news-regulatory-updates__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-industry-news-regulatory-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title highlight */
    font-weight: bold;
}

.page-industry-news-regulatory-updates__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.8;
}

.page-industry-news-regulatory-updates__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #004D99; /* Deep blue text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

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

.page-industry-news-regulatory-updates__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-industry-news-regulatory-updates__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section general styles */
.page-industry-news-regulatory-updates__section {
    padding: 60px 0;
    text-align: center;
}

.page-industry-news-regulatory-updates__section:nth-of-type(even) {
    background-color: #e0eaf2; /* Light blue-gray for alternating sections */
}

.page-industry-news-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #004D99; /* Deep blue for main titles */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-industry-news-regulatory-updates__card:hover {
    transform: translateY(-10px);
}

.page-industry-news-regulatory-updates__card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-industry-news-regulatory-updates__card-title {
    font-size: 1.5em;
    color: #004D99;
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Image Text Layout */
.page-industry-news-regulatory-updates__image-text-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-industry-news-regulatory-updates__image-text-item {
    flex: 1 1 45%;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-industry-news-regulatory-updates__image-text-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__item-title {
    font-size: 1.6em;
    color: #004D99;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__item-title + p {
    text-align: center; /* Center text under image-text-item title */
}

/* List styles */
.page-industry-news-regulatory-updates__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-industry-news-regulatory-updates__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    color: #333;
}

.page-industry-news-regulatory-updates__list li::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

/* CTA Button general style */
.page-industry-news-regulatory-updates__cta-button {
    display: inline-block;
    background-color: #004D99; /* Deep blue button */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    border: 2px solid #004D99;
}

.page-industry-news-regulatory-updates__cta-button:hover {
    background-color: #003a73; /* Darker blue on hover */
    transform: translateY(-3px);
}

/* Info Box */
.page-industry-news-regulatory-updates__info-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 900px;
    text-align: left;
    border-left: 5px solid #FFD700; /* Gold border for emphasis */
}

.page-industry-news-regulatory-updates__info-box-title {
    font-size: 2em;
    color: #004D99;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__info-box .page-industry-news-regulatory-updates__list {
    margin-top: 0;
    margin-bottom: 0;
    max-width: none; /* Remove max-width for nested list */
}

.page-industry-news-regulatory-updates__info-box .page-industry-news-regulatory-updates__list li {
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0;
    border-radius: 0;
    border-bottom: 1px dashed #eee;
    font-size: 1em;
}

.page-industry-news-regulatory-updates__info-box .page-industry-news-regulatory-updates__list li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.page-industry-news-regulatory-updates__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-industry-news-regulatory-updates__faq-question {
    font-size: 1.4em;
    color: #004D99;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-industry-news-regulatory-updates__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-industry-news-regulatory-updates__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-industry-news-regulatory-updates__faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
    padding-left: 10px;
}

/* Call to Action Section at the end */
.page-industry-news-regulatory-updates__call-to-action {
    background: linear-gradient(135deg, #004D99, #002D5C);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-industry-news-regulatory-updates__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-regulatory-updates__cta-button--primary {
    background-color: #FFD700;
    color: #004D99;
    margin-right: 20px;
    border: 2px solid #FFD700;
}

.page-industry-news-regulatory-updates__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-industry-news-regulatory-updates__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-news-regulatory-updates__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #004D99;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news-regulatory-updates__hero-description {
        font-size: 1.1em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__image-text-item {
        flex: 1 1 100%;
    }
    .page-industry-news-regulatory-updates__cta-title {
        font-size: 2.2em;
    }
    .page-industry-news-regulatory-updates__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-regulatory-updates__hero {
        padding: 60px 20px;
    }
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__hero-description {
        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__card-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news-regulatory-updates__list li {
        font-size: 0.95em;
        padding: 12px 15px;
    }
    .page-industry-news-regulatory-updates__info-box {
        padding: 30px;
    }
    .page-industry-news-regulatory-updates__info-box-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__faq-question {
        font-size: 1.2em;
    }
    .page-industry-news-regulatory-updates__cta-button {
        margin-right: 0;
        margin-bottom: 15px;
        width: 80%;
        max-width: 300px;
    }
    .page-industry-news-regulatory-updates__cta-button--primary,
    .page-industry-news-regulatory-updates__cta-button--secondary {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__section p {
        font-size: 0.95em;
    }
    .page-industry-news-regulatory-updates__card-title {
        font-size: 1.3em;
    }
    .page-industry-news-regulatory-updates__item-title {
        font-size: 1.4em;
    }
    .page-industry-news-regulatory-updates__faq-question {
        font-size: 1.1em;
    }
    .page-industry-news-regulatory-updates__faq-answer {
        font-size: 0.95em;
    }
    .page-industry-news-regulatory-updates__cta-title {
        font-size: 1.8em;
    }
}