/* style/industry-insights-legal-framework.css */

/* Base styles for the page content */
.page-industry-insights-legal-framework {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-industry-insights-legal-framework__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-industry-insights-legal-framework__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-insights-legal-framework__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

.page-industry-insights-legal-framework__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Buttons */
.page-industry-insights-legal-framework__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-industry-insights-legal-framework__button--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-industry-insights-legal-framework__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-industry-insights-legal-framework__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-industry-insights-legal-framework__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-industry-insights-legal-framework__button--download {
    background-color: #007bff; /* A distinct blue for download */
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-industry-insights-legal-framework__button--download:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Content Section */
.page-industry-insights-legal-framework__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-industry-insights-legal-framework__grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.page-industry-insights-legal-framework__main-content {
    padding-right: 20px;
}

.page-industry-insights-legal-framework__section-title {
    font-size: 2em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-industry-insights-legal-framework__sub-section-title {
    font-size: 1.5em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-insights-legal-framework__main-content p {
    margin-bottom: 15px;
    color: #333333;
    font-size: 1.05em;
}

.page-industry-insights-legal-framework__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-insights-legal-framework__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #333333;
}

.page-industry-insights-legal-framework__list li {
    margin-bottom: 8px;
}

.page-industry-insights-legal-framework__list li strong {
    color: #003366;
}

/* Sidebar */
.page-industry-insights-legal-framework__sidebar {
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.page-industry-insights-legal-framework__cta-card {
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0eaf0;
}

.page-industry-insights-legal-framework__card-title {
    font-size: 1.3em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-insights-legal-framework__card-text {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
}

.page-industry-insights-legal-framework__cta-card .page-industry-insights-legal-framework__button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.page-industry-insights-legal-framework__related-articles {
    background-color: #fdfdfd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.page-industry-insights-legal-framework__related-articles .page-industry-insights-legal-framework__list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.page-industry-insights-legal-framework__related-articles .page-industry-insights-legal-framework__list li {
    margin-bottom: 10px;
}

.page-industry-insights-legal-framework__link {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
}

.page-industry-insights-legal-framework__link:hover {
    text-decoration: underline;
    color: #FFD700;
}

/* Bottom CTA Section */
.page-industry-insights-legal-framework__cta-section {
    background-color: #003366; /* Dark blue background */
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-industry-insights-legal-framework__cta-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for emphasis */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-insights-legal-framework__cta-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.page-industry-insights-legal-framework__cta-section .page-industry-insights-legal-framework__button {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-insights-legal-framework__grid {
        grid-template-columns: 1fr;
    }

    .page-industry-insights-legal-framework__main-content {
        padding-right: 0;
    }

    .page-industry-insights-legal-framework__sidebar {
        padding-left: 0;
        border-left: none;
        margin-top: 40px;
    }

    .page-industry-insights-legal-framework__hero-title {
        font-size: 2.2em;
    }

    .page-industry-insights-legal-framework__section-title {
        font-size: 1.8em;
    }

    .page-industry-insights-legal-framework__sub-section-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-industry-insights-legal-framework__hero-section {
        padding: 60px 0;
    }

    .page-industry-insights-legal-framework__hero-title {
        font-size: 1.8em;
    }

    .page-industry-insights-legal-framework__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-insights-legal-framework__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-industry-insights-legal-framework__button--secondary {
        margin-left: 10px;
    }

    .page-industry-insights-legal-framework__cta-section {
        padding: 40px 0;
    }

    .page-industry-insights-legal-framework__cta-title {
        font-size: 1.8em;
    }

    .page-industry-insights-legal-framework__cta-section .page-industry-insights-legal-framework__button {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-legal-framework__hero-title {
        font-size: 1.5em;
    }

    .page-industry-insights-legal-framework__section-title {
        font-size: 1.5em;
    }

    .page-industry-insights-legal-framework__sub-section-title {
        font-size: 1.1em;
    }

    .page-industry-insights-legal-framework__hero-section .page-industry-insights-legal-framework__button,
    .page-industry-insights-legal-framework__cta-section .page-industry-insights-legal-framework__button {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .page-industry-insights-legal-framework__button--secondary {
        margin-top: 10px;
        margin-left: auto;
    }
}