/* style/industry-news-latest-regulations.css */

/* Base styles for the page content */
.page-industry-news-latest-regulations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Hero Section */
.page-industry-news-latest-regulations__hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-latest-regulations__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-industry-news-latest-regulations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-industry-news-latest-regulations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-industry-news-latest-regulations__hero-button {
    display: inline-block;
    background-color: #ff8400; /* Complementary color for emphasis */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-regulations__hero-button:hover {
    background-color: #e67300;
    transform: translateY(-3px);
}

/* Content Section */
.page-industry-news-latest-regulations__content-section {
    background-color: #fff;
    padding: 60px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.page-industry-news-latest-regulations__section-padding {
    padding: 60px 0;
}

.page-industry-news-latest-regulations__text-content {
    max-width: 900px;
}

.page-industry-news-latest-regulations__section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    border-bottom: 3px solid #28a745;
    padding-bottom: 15px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-latest-regulations__sub-title {
    font-size: 1.8em;
    color: #28a745;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 5px solid #007bff;
    padding-left: 15px;
}

.page-industry-news-latest-regulations__text-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-industry-news-latest-regulations__text-content strong {
    color: #007bff;
}

.page-industry-news-latest-regulations__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.page-industry-news-latest-regulations__image--large {
    max-width: 100%;
}

.page-industry-news-latest-regulations__image--medium {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-latest-regulations__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-industry-news-latest-regulations__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-industry-news-latest-regulations__list li strong {
    color: #007bff;
}

/* Call to Action Section */
.page-industry-news-latest-regulations__cta-section {
    text-align: center;
    background-color: #f0f8ff;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 60px;
    border: 1px solid #e0e0e0;
}

.page-industry-news-latest-regulations__cta-text {
    font-size: 1.6em;
    font-weight: bold;
    color: #0056b3; /* Darker blue for contrast */
    margin-bottom: 30px;
}

.page-industry-news-latest-regulations__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-industry-news-latest-regulations__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-regulations__button--primary {
    background-color: #007bff;
    color: #fff;
}

.page-industry-news-latest-regulations__button--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-industry-news-latest-regulations__button--secondary {
    background-color: #28a745;
    color: #fff;
}

.page-industry-news-latest-regulations__button--secondary:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-industry-news-latest-regulations__button--link {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 13px 28px;
}

.page-industry-news-latest-regulations__button--link:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 1.3em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 2em;
    }
    .page-industry-news-latest-regulations__sub-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-regulations__text-content p {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__list li {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__cta-text {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-latest-regulations__hero-section {
        padding: 80px 0;
    }
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-regulations__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news-latest-regulations__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-industry-news-latest-regulations__button {
        width: 80%;
        max-width: 300px;
    }
    .page-industry-news-latest-regulations__image--medium {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-regulations__hero-section {
        padding: 60px 0;
    }
    .page-industry-news-latest-regulations__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-latest-regulations__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-regulations__sub-title {
        font-size: 1.1em;
    }
    .page-industry-news-latest-regulations__cta-text {
        font-size: 1.2em;
    }
    .page-industry-news-latest-regulations__button {
        width: 90%;
    }
}