/* style/news-regulatory-changes.css */
.page-news-regulatory-changes {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-news-regulatory-changes__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9c 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-regulatory-changes__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric_pattern,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-news-regulatory-changes__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-news-regulatory-changes__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-news-regulatory-changes__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-news-regulatory-changes__section--intro {
    background-color: #f0f2f5;
}

.page-news-regulatory-changes__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

.page-news-regulatory-changes__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-news-regulatory-changes__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

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

.page-news-regulatory-changes__card {
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-regulatory-changes__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-regulatory-changes__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-regulatory-changes__card-image {
    max-width: 100px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.page-news-regulatory-changes__card p {
    font-size: 1em;
    color: #666;
    text-align: center;
}

.page-news-regulatory-changes__list,
.page-news-regulatory-changes__benefit-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-news-regulatory-changes__list li,
.page-news-regulatory-changes__benefit-list li {
    background-color: #eaf1fa;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-news-regulatory-changes__list li::before,
.page-news-regulatory-changes__benefit-list li::before {
    content: '✔';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

.page-news-regulatory-changes__button {
    display: inline-block;
    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, box-shadow 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-news-regulatory-changes__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark Blue */
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-news-regulatory-changes__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-news-regulatory-changes__button--secondary {
    background-color: #0A2463; /* Dark Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(10, 36, 99, 0.4);
}

.page-news-regulatory-changes__button--secondary:hover {
    background-color: #1a3e80;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(10, 36, 99, 0.6);
}

.page-news-regulatory-changes__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-regulatory-changes__hero-title {
        font-size: 2.8em;
    }
    .page-news-regulatory-changes__hero-description {
        font-size: 1.1em;
    }
    .page-news-regulatory-changes__section-title {
        font-size: 2em;
    }
    .page-news-regulatory-changes__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news-regulatory-changes__hero {
        padding: 80px 0;
    }
    .page-news-regulatory-changes__hero-title {
        font-size: 2.2em;
    }
    .page-news-regulatory-changes__hero-description {
        font-size: 1em;
    }
    .page-news-regulatory-changes__section {
        padding: 40px 0;
    }
    .page-news-regulatory-changes__section-title {
        font-size: 1.8em;
    }
    .page-news-regulatory-changes__section p {
        font-size: 0.95em;
    }
    .page-news-regulatory-changes__list li,
    .page-news-regulatory-changes__benefit-list li {
        font-size: 0.9em;
        padding: 12px 15px;
    }
    .page-news-regulatory-changes__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news-regulatory-changes__hero {
        padding: 60px 0;
    }
    .page-news-regulatory-changes__hero-title {
        font-size: 1.8em;
    }
    .page-news-regulatory-changes__hero-description {
        font-size: 0.9em;
    }
    .page-news-regulatory-changes__section-title {
        font-size: 1.5em;
    }
    .page-news-regulatory-changes__grid {
        grid-template-columns: 1fr;
    }
    .page-news-regulatory-changes__button {
        width: 90%;
        display: block;
        margin: 10px auto;
    }
    .page-news-regulatory-changes__cta-buttons {
        flex-direction: column;
    }
}