/* Custom CSS */

/* General Styles & Resets */
:root {
    --primary-dark: #1A2A47; /* Deep Blue */
    --primary-medium: #2B3E60; /* Slightly lighter blue */
    --accent-teal: #00BCD4; /* Bright Teal */
    --accent-green: #4CAF50; /* Green for highlights/success */
    --text-light: #E0E0E0; /* Light grey for text on dark backgrounds */
    --text-dark: #333333; /* Dark grey for general text */
    --text-secondary: #666666; /* Medium grey for secondary text */
    --background-light: #F8F8F8; /* Light background for some sections */
    --background-dark: #121E31; /* Very dark blue for hero/footer */
    --border-color: #444; /* Border color */
    --button-bg: var(--accent-teal);
    --button-hover-bg: #00A3B8;
    --card-bg: #2B3E60;
    --spacing-unit: 1rem;
    --section-padding: 4rem 0;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth; /* Smooth scroll for anchor links */
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--button-hover-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--accent-teal);
    font-weight: 600;
}

/* Material Symbols Icon Styling */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    font-size: 1.2rem;
}

/* Header */
.main-header {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.2rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* Large site, so a significant hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    position: absolute;
    bottom: 0;
    left: 44%;
    transform: translateX(-50%);
    color: var(--accent-teal);
    font-size: 3rem;
    cursor: pointer;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow .material-symbols-outlined {
    font-size: inherit;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

section.content-with-sidebars {
    background: #fff;
}

/* Featured Article Block */
.featured-article-block {
    background-color: #ffffff;
    color: var(--text-dark);
}

.featured-article-block .section-title {
    color: var(--primary-dark);
}

.featured-article-block .section-subtitle {
    color: var(--text-secondary);
}

.article-content {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.stat-highlight {
    background-color: var(--primary-medium);
    color: var(--text-light);
    padding: 2rem;
    margin: 3rem auto 0 auto;
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
    border-left: 5px solid var(--accent-teal);
    max-width: 900px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Content with Sidebars Grid */
.content-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 992px) {
    
}

.main-content-column {
    /* Styles for the main content area */
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Latest News Section */
.latest-news-section {
    background-color: #ffffff;
    padding: 0 0 4rem 0; /* Padding handled by section-padding on parent */
}

.latest-news-section .section-title {
    color: var(--primary-dark);
    text-align: left;
    margin-bottom: 2.5rem;
}

.news-list {
    display: grid;
    gap: 2rem;
}

.news-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.news-header {
    margin-bottom: 1rem;
}

.news-item h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-meta .material-symbols-outlined {
    font-size: 1rem;
    color: var(--accent-teal);
}

.news-excerpt {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.spoiler-content {
    display: none; /* Hidden by default */
    margin-top: 1rem;
    color: var(--text-dark);
}

.spoiler-content p {
    margin-bottom: 1rem;
}

.read-more-btn {
    background-color: var(--button-bg);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: auto; /* Push button to bottom if content varies */
    transition: background-color 0.3s ease;
    text-decoration: none; /* Ensure no underline */
}

.read-more-btn:hover {
    background-color: var(--button-hover-bg);
}

/* Key Concepts Section */
.key-concepts-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
}

.key-concepts-section .section-title {
    color: var(--text-light);
}

.key-concepts-section .section-subtitle {
    color: var(--text-light);
}

/* Re-thinking 5 blocks layout: Use flexbox for centering the last row */
.concepts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items when they wrap */
    gap: 2rem;
}

.concept-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 2rem); /* 3 in a row, accounting for gap */
    min-width: 280px; /* Minimum width for card */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to top */
    align-items: center;
    height: auto; /* Ensure equal height will be handled by JS or flexbox align-items stretch */
}

.concept-card img {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
    filter: invert(1) brightness(0.8) sepia(1) saturate(5) hue-rotate(170deg); /* Teal tint */
}

.concept-card h3 {
    font-size: 1.4rem;
    color: var(--accent-teal);
    margin-bottom: 0.8rem;
}

.concept-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    flex-grow: 1; /* Allow paragraph to take up space */
}

/* Sidebar Styling */
.sidebar-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-teal);
    padding-bottom: 0.5rem;
}

.popular-posts-sidebar {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.popular-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.popular-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.popular-list .post-info h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.popular-list .post-info .views {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.popular-list .post-info .views .material-symbols-outlined {
    font-size: 1rem;
    color: var(--accent-teal);
}

.tag-cloud-sidebar {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.tag-list .tag {
    background-color: var(--primary-medium);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.tag-list .tag:hover {
    background-color: var(--accent-teal);
    transform: translateY(-2px);
}

.tag-list .tag-small {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.tag-list .tag-medium {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.tag-list .tag-large {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
}


/* Team Blog Section */
.team-section {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.team-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .team-content-wrapper {
        flex-direction: row;
        text-align: left;
    }
    .team-image-wrapper {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .team-text-wrapper {
        flex: 1;
        padding-left: 2rem;
    }
}

.team-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.team-section .section-title {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .team-section .section-title {
        text-align: left;
    }
}

.team-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.testimonials-section .section-title {
    color: var(--primary-dark);
}

.testimonials-section .section-subtitle {
    color: var(--text-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto; /* Ensure equal height will be handled by JS or flexbox align-items stretch */
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-teal);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    flex-grow: 1; /* Allow text to take up space */
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

/* Footer */
.newsletter-footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem 0;
    border-top: 5px solid var(--accent-teal);
}

.footer-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content-wrapper {
        grid-template-columns: 1.5fr 2fr 1.5fr; /* Logo, Newsletter, Links */
        text-align: left;
    }
    .footer-logo-section {
        justify-self: start;
    }
    .newsletter-section {
        justify-self: center;
    }
    .footer-links-section {
        justify-self: end;
    }
}

.footer-logo-section .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-logo-section .logo {
        justify-content: flex-start;
    }
}

.footer-logo-section .tagline {
    font-size: 0.9rem;
    color: var(--text-light);
}

.newsletter-section h3 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: row;
        margin: 0;
    }
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--primary-medium);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background-color: var(--button-bg);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Ensure no underline */
}

.newsletter-form button:hover {
    background-color: var(--button-hover-bg);
}

.message-area {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .message-area {
        text-align: left;
    }
}

.message-area.success {
    color: var(--accent-green);
}

.message-area.error {
    color: #FF6347; /* Tomato red for error */
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-nav ul {
        align-items: flex-end;
    }
}

.footer-nav a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--accent-teal);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .copyright {
        text-align: right;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .hero-section {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .scroll-arrow {
        font-size: 2.5rem;
    }
    .article-content {
        font-size: 1rem;
    }
    .stat-highlight {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .latest-news-section .section-title {
        text-align: center;
    }
    .team-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .team-text-wrapper {
        padding-left: 0;
    }
    .team-section .section-title {
        text-align: center;
    }
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo-section .logo {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
        margin: 0 auto;
    }
    .footer-nav ul {
        align-items: center;
    }
    .copyright {
        text-align: center;
    }
    .concept-card {
        flex: 1 1 100%; /* Single column on small screens */
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .logo span {
        font-size: 1.5rem;
    }
    .logo img {
        height: 30px;
    }
    .main-nav a {
        font-size: 0.9rem;
    }
    .newsletter-section h3 {
        font-size: 1.4rem;
    }
    .newsletter-form input, .newsletter-form button {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
}

/* Equal Height for Cards */
/* This is often best handled by JavaScript for dynamic content,
   but for fixed grids, flexbox or grid auto-rows can help.
   For `testimonials-grid` and `concepts-grid`, flexbox with `align-items: stretch`
   on the container and `flex-grow: 1` on text elements helps.
   I will add a JS solution for explicit equal height for robustness. *//* New styles only, as requested */

/* Parent container for legal or detailed informational content */
.legalFoldBox {
    padding-top: 3rem; /* Top padding for the section */
    padding-bottom: 3rem; /* Bottom padding for the section */
    padding-left: 1.5rem; /* Side padding */
    padding-right: 1.5rem; /* Side padding */
    max-width: 960px; /* Constrain width for optimal readability of text blocks */
    margin-left: auto; /* Center the block horizontally */
    margin-right: auto; /* Center the block horizontally */
    background-color: var(--background-light); /* Assuming a light background for this content */
    color: var(--text-dark); /* Dark text for high readability */
}

/* Heading 1 styles within legalFoldBox */
.legalFoldBox h1 {
    font-size: 2.2rem; /* Moderate size for main section titles */
    font-weight: 700; /* Bold weight for prominence */
    line-height: 1.2; /* Good line height for headings */
    margin-top: 2.5rem; /* Top margin for clear separation */
    margin-bottom: 1.5rem; /* Bottom margin to separate from subsequent elements */
    color: var(--primary-dark); /* Using a primary dark color for important headings */
}

/* Heading 2 styles within legalFoldBox */
.legalFoldBox h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold weight */
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-dark);
}

/* Heading 3 styles within legalFoldBox */
.legalFoldBox h3 {
    font-size: 1.5rem; /* Further reduction in size */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-medium); /* Using a slightly lighter primary color */
}

/* Heading 4 styles within legalFoldBox */
.legalFoldBox h4 {
    font-size: 1.25rem; /* Closer to paragraph text size */
    font-weight: 500; /* Medium weight */
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

/* Heading 5 styles within legalFoldBox */
.legalFoldBox h5 {
    font-size: 1.1rem; /* Just above paragraph text, suitable for sub-headings */
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-secondary); /* Secondary text color for less prominence */
}

/* Paragraph styles within legalFoldBox */
.legalFoldBox p {
    font-size: 1rem; /* Base font size for general text readability */
    line-height: 1.7; /* Generous line height for long-form content */
    margin-bottom: 1.2rem; /* Space between paragraphs */
    color: var(--text-dark);
}

/* Unordered list styles within legalFoldBox */
.legalFoldBox ul {
    list-style: disc; /* Standard disc bullets for unordered lists */
    margin-left: 1.5rem; /* Indent the list from the left edge */
    margin-top: 1rem; /* Space before the list */
    margin-bottom: 1.5rem; /* Space after the list */
    padding-left: 0; /* No extra padding if margin-left is used for indent */
}

/* List item styles within legalFoldBox */
.legalFoldBox li {
    font-size: 1rem; /* Consistent font size with paragraphs */
    line-height: 1.6;
    margin-bottom: 0.8rem; /* Space between individual list items */
    color: var(--text-dark);
}

/* Responsive adjustments for legalFoldBox padding and typography */
@media (max-width: 768px) {
    .legalFoldBox {
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .legalFoldBox h1 {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .legalFoldBox h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .legalFoldBox h3 {
        font-size: 1.3rem;
        margin-top: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .legalFoldBox h4 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }
    .legalFoldBox h5 {
        font-size: 1rem;
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .legalFoldBox p,
    .legalFoldBox li {
        font-size: 0.95rem; /* Slightly smaller text on mobile for better fit */
        margin-bottom: 1rem;
    }
    .legalFoldBox ul {
        margin-left: 1rem;
        margin-top: 0.8rem;
        margin-bottom: 1.2rem;
    }
}
