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

.page-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9; /* Light grey background for readability */
}

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

.page-news-regulatory-updates__hero {
    background: linear-gradient(135deg, #FFD700, #000080); /* Gold to Dark Blue gradient */
    color: #ffffff; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-regulatory-updates__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, rgba(0, 0, 128, 0.2) 100%);
    transform: rotate(45deg);
    opacity: 0.1;
    z-index: 0;
}

.page-news-regulatory-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-news-regulatory-updates__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

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

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

.page-news-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark blue for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-news-regulatory-updates__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-news-regulatory-updates__subsection-title {
    font-size: 2em;
    color: #000080; /* Dark blue for subtitles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-news-regulatory-updates__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-news-regulatory-updates__content-wrapper p {
    flex: 1;
    font-size: 1.1em;
    color: #444;
}

.page-news-regulatory-updates__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-news-regulatory-updates__image {
    flex: 0 0 40%;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-news-regulatory-updates__image--center {
    display: block;
    margin: 30px auto;
    max-width: 60%;
    flex: none;
}

.page-news-regulatory-updates__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-news-regulatory-updates__list li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-regulatory-updates__list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-news-regulatory-updates__list h4 {
    color: #000080; /* Dark blue for list item titles */
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-news-regulatory-updates__list p {
    color: #555;
    font-size: 1em;
}

.page-news-regulatory-updates__article {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news-regulatory-updates__article-title {
    color: #000080; /* Dark blue for article titles */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-news-regulatory-updates__article p {
    color: #444;
}

.page-news-regulatory-updates__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-news-regulatory-updates__faq-question {
    color: #000080; /* Dark blue for FAQ questions */
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-news-regulatory-updates__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-news-regulatory-updates__faq-answer {
    color: #555;
    font-size: 1em;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-news-regulatory-updates__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-news-regulatory-updates__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-news-regulatory-updates__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-news-regulatory-updates__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    border-color: #e6c200;
    color: #000050; /* Slightly darker blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-news-regulatory-updates__btn--secondary {
    background-color: #000080; /* Dark blue background */
    color: #FFD700; /* Gold text */
    border: 2px solid #000080;
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.4);
}

.page-news-regulatory-updates__btn--secondary:hover {
    background-color: #000050; /* Darker blue on hover */
    border-color: #000050;
    color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 128, 0.6);
}

.page-news-regulatory-updates__section--conclusion .page-news-regulatory-updates__btn {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-regulatory-updates__hero-title {
        font-size: 2.5em;
    }
    .page-news-regulatory-updates__hero-subtitle {
        font-size: 1.1em;
    }
    .page-news-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-news-regulatory-updates__subsection-title {
        font-size: 1.7em;
    }
    .page-news-regulatory-updates__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-news-regulatory-updates__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-news-regulatory-updates__image {
        max-width: 80%;
        margin-top: 20px;
    }
    .page-news-regulatory-updates__image--left, .page-news-regulatory-updates__image--right {
        order: -1; /* Image appears above text on mobile */
    }
}

@media (max-width: 768px) {
    .page-news-regulatory-updates__hero {
        padding: 60px 0;
    }
    .page-news-regulatory-updates__hero-title {
        font-size: 2em;
    }
    .page-news-regulatory-updates__hero-subtitle {
        font-size: 1em;
    }
    .page-news-regulatory-updates__section {
        padding: 40px 0;
    }
    .page-news-regulatory-updates__section-title {
        font-size: 1.8em;
    }
    .page-news-regulatory-updates__subsection-title {
        font-size: 1.5em;
    }
    .page-news-regulatory-updates__list li, .page-news-regulatory-updates__article, .page-news-regulatory-updates__faq-item {
        padding: 20px;
    }
    .page-news-regulatory-updates__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news-regulatory-updates__hero-title {
        font-size: 1.8em;
    }
    .page-news-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-news-regulatory-updates__subsection-title {
        font-size: 1.3em;
    }
    .page-news-regulatory-updates__image {
        max-width: 100%;
    }
    .page-news-regulatory-updates__image--center {
        max-width: 90%;
    }
}