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

/* Biến CSS */
:root {
    --page-industry-news-regulatory-updates-primary-color: #007bff;
    --page-industry-news-regulatory-updates-secondary-color: #ffc107;
    --page-industry-news-regulatory-updates-dark-text: #333333;
    --page-industry-news-regulatory-updates-light-text: #ffffff;
    --page-industry-news-regulatory-updates-background-light: #f8f9fa;
    --page-industry-news-regulatory-updates-background-dark: #0056b3;
    --page-industry-news-regulatory-updates-border-color: #e0e0e0;
}

.page-industry-news-regulatory-updates {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-industry-news-regulatory-updates-dark-text);
    background-color: var(--page-industry-news-regulatory-updates-background-light);
}

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

.page-industry-news-regulatory-updates__hero {
    background: linear-gradient(135deg, var(--page-industry-news-regulatory-updates-primary-color) 0%, #0056b3 100%);
    color: var(--page-industry-news-regulatory-updates-light-text);
    padding: 80px 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: 0 auto;
}

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

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

.page-industry-news-regulatory-updates__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--page-industry-news-regulatory-updates-light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory-updates__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--page-industry-news-regulatory-updates-light-text);
}

.page-industry-news-regulatory-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-industry-news-regulatory-updates-border-color);
}

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

.page-industry-news-regulatory-updates__heading {
    font-size: 2.2em;
    color: var(--page-industry-news-regulatory-updates-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-industry-news-regulatory-updates__subheading {
    font-size: 1.5em;
    color: var(--page-industry-news-regulatory-updates-primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news-regulatory-updates__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-industry-news-regulatory-updates-dark-text);
}

.page-industry-news-regulatory-updates__text strong {
    color: var(--page-industry-news-regulatory-updates-primary-color);
}

.page-industry-news-regulatory-updates__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    font-size: 1.05em;
    text-align: center;
}

.page-industry-news-regulatory-updates__btn--primary {
    background-color: var(--page-industry-news-regulatory-updates-secondary-color);
    color: var(--page-industry-news-regulatory-updates-dark-text);
    border: 1px solid var(--page-industry-news-regulatory-updates-secondary-color);
}

.page-industry-news-regulatory-updates__btn--primary:hover {
    background-color: #e6b000;
    border-color: #e6b000;
    transform: translateY(-2px);
}

.page-industry-news-regulatory-updates__btn--secondary {
    background-color: transparent;
    color: var(--page-industry-news-regulatory-updates-light-text);
    border: 2px solid var(--page-industry-news-regulatory-updates-light-text);
}

.page-industry-news-regulatory-updates__btn--secondary:hover {
    background-color: var(--page-industry-news-regulatory-updates-light-text);
    color: var(--page-industry-news-regulatory-updates-primary-color);
    transform: translateY(-2px);
}

.page-industry-news-regulatory-updates__section--importance .page-industry-news-regulatory-updates__heading,
.page-industry-news-regulatory-updates__section--overview .page-industry-news-regulatory-updates__heading,
.page-industry-news-regulatory-updates__section--79king-commitment .page-industry-news-regulatory-updates__heading,
.page-industry-news-regulatory-updates__section--recent-updates .page-industry-news-regulatory-updates__heading,
.page-industry-news-regulatory-updates__section--advice .page-industry-news-regulatory-updates__heading,
.page-industry-news-regulatory-updates__section--contact .page-industry-news-regulatory-updates__heading {
    color: var(--page-industry-news-regulatory-updates-primary-color);
}

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

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

.page-industry-news-regulatory-updates__feature-item:hover {
    transform: translateY(-5px);
}

.page-industry-news-regulatory-updates__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.page-industry-news-regulatory-updates__image-text-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-industry-news-regulatory-updates__image-text-layout .page-industry-news-regulatory-updates__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-industry-news-regulatory-updates__image-text-layout .page-industry-news-regulatory-updates__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-industry-news-regulatory-updates__image-text-layout .page-industry-news-regulatory-updates__text-content {
    flex: 2;
    min-width: 300px;
}

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

.page-industry-news-regulatory-updates__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--page-industry-news-regulatory-updates-dark-text);
}

.page-industry-news-regulatory-updates__list li::before {
    content: '▪'; /* Unicode bullet point */
    color: var(--page-industry-news-regulatory-updates-secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

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

.page-industry-news-regulatory-updates__commitment-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-industry-news-regulatory-updates__full-width-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news-regulatory-updates__article {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-industry-news-regulatory-updates__list--icon {
    list-style: none;
    padding: 0;
}

.page-industry-news-regulatory-updates__list--icon li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--page-industry-news-regulatory-updates-dark-text);
}

.page-industry-news-regulatory-updates__list-icon {
    font-size: 1.5em;
    color: var(--page-industry-news-regulatory-updates-primary-color);
    margin-right: 15px;
    line-height: 1;
}

.page-industry-news-regulatory-updates__cta-block {
    background-color: var(--page-industry-news-regulatory-updates-primary-color);
    color: var(--page-industry-news-regulatory-updates-light-text);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-industry-news-regulatory-updates__text-cta {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--page-industry-news-regulatory-updates-light-text);
}

.page-industry-news-regulatory-updates__text-cta strong {
    color: var(--page-industry-news-regulatory-updates-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-regulatory-updates__title {
        font-size: 2.2em;
    }

    .page-industry-news-regulatory-updates__subtitle {
        font-size: 1.1em;
    }

    .page-industry-news-regulatory-updates__heading {
        font-size: 1.8em;
    }

    .page-industry-news-regulatory-updates__subheading {
        font-size: 1.3em;
    }

    .page-industry-news-regulatory-updates__image-text-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-industry-news-regulatory-updates__hero {
        padding: 60px 0;
    }

    .page-industry-news-regulatory-updates__title {
        font-size: 1.8em;
    }

    .page-industry-news-regulatory-updates__subtitle {
        font-size: 1em;
    }

    .page-industry-news-regulatory-updates__section {
        padding: 40px 0;
    }

    .page-industry-news-regulatory-updates__heading {
        font-size: 1.6em;
    }

    .page-industry-news-regulatory-updates__feature-grid,
    .page-industry-news-regulatory-updates__commitment-grid,
    .page-industry-news-regulatory-updates__article-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-regulatory-updates__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-industry-news-regulatory-updates__cta-block {
        padding: 30px;
    }

    .page-industry-news-regulatory-updates__text-cta {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__btn {
        width: 100%;
        margin-bottom: 10px;
    }
}