/* style.css */

/*--------------------------------------------------------------
# Global Variables and Base Styles
--------------------------------------------------------------*/
:root {
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Rubik', sans-serif;

    /* Monochrome Color Scheme */
    --color-background: #FFFFFF;
    --color-surface: #F8F9FA; /* Slightly off-white for cards/light sections */
    --color-text-main: #333333;
    --color-text-secondary: #555555;
    --color-heading: #222222; /* Darker for titles */
    --color-border-light: #E0E0E0;
    --color-border-medium: #CCCCCC;
    --color-primary-dark: #222222; /* For primary actions, strong elements */
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Accent for specific UI elements like cookie button if needed */
    --color-accent: #007bff; 

    --header-height: 80px; /* Adjust as needed */

    /* Transitions */
    --transition-speed-fast: 0.2s;
    --transition-speed-normal: 0.3s;
    --transition-easing: ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition-speed-fast) var(--transition-easing);
}

a:hover {
    color: var(--color-text-main);
    text-decoration: underline;
}

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

/*--------------------------------------------------------------
# Layout & Container
--------------------------------------------------------------*/
.main-container {
    width: 100%;
    overflow: hidden; /* To contain parallax or other effects */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.column {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 10px;
}

.column.is-two-thirds {
    flex: none;
    width: 66.6666%;
}
@media screen and (max-width: 768px) {
    .column.is-two-thirds {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# Buttons (Global)
--------------------------------------------------------------*/
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 6px; 
    cursor: pointer;
    transition: background-color var(--transition-speed-normal) var(--transition-easing), 
                color var(--transition-speed-normal) var(--transition-easing), 
                transform var(--transition-speed-fast) var(--transition-easing), 
                box-shadow var(--transition-speed-normal) var(--transition-easing);
    border: 2px solid transparent;
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
    line-height: 1.5; /* Ensure text is vertically centered */
}

.btn-primary,
button[type="submit"], /* Apply to main submit buttons */
.btn-submit-hero { 
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

.btn-primary:hover,
button[type="submit"]:hover,
.btn-submit-hero:hover {
    background-color: var(--color-text-main); 
    border-color: var(--color-text-main);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary-dark);
}

.btn-secondary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Forms (Global)
--------------------------------------------------------------*/
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-align: left;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"], /* Added for completeness */
.form-group textarea,
.form-group select { /* Added for completeness */
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border-medium);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    background-color: var(--color-white); 
    transition: border-color var(--transition-speed-normal) var(--transition-easing), 
                box-shadow var(--transition-speed-normal) var(--transition-easing);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary-dark); 
    box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.1); 
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.site-header {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white for eco-minimalism */
    backdrop-filter: blur(8px); /* Subtle glassmorphism */
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 45px; /* Adjust based on actual logo */
    width: auto;
}

.main-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav .nav-menu li a {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    text-decoration: none;
}

.main-nav .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: width var(--transition-speed-normal) var(--transition-easing);
}

.main-nav .nav-menu li a:hover::after,
.main-nav .nav-menu li a.active::after { /* Add 'active' class via JS */
    width: 100%;
}

.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav menu when open */
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary-dark);
    position: relative;
    transition: transform var(--transition-speed-normal) var(--transition-easing);
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: transform var(--transition-speed-normal) var(--transition-easing), 
                top var(--transition-speed-normal) var(--transition-easing),
                opacity var(--transition-speed-normal) var(--transition-easing);
}

.hamburger-icon::before { top: -7px; }
.hamburger-icon::after { top: 7px; }

/* Active state for hamburger */
.nav-toggle.active .hamburger-icon { background-color: transparent; }
.nav-toggle.active .hamburger-icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger-icon::after { top: 0; transform: rotate(-45deg); }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    color: var(--color-white);
    padding: calc(var(--header-height) + 4rem) 0 4rem; /* Adjust padding to account for fixed header */
    min-height: 90vh; /* Natural height based on content, but substantial */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Control content width */
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem); /* Responsive font size */
    color: var(--color-white); /* VITAL requirement */
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--color-white); /* VITAL requirement */
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-form-container {
    background-color: rgba(10, 10, 10, 0.4); /* Darker, semi-transparent background */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-form-container .form-title {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-form-container .form-group label {
    color: #E0E0E0; /* Lighter labels */
}

.hero-form-container .form-group input[type="text"],
.hero-form-container .form-group input[type="email"],
.hero-form-container .form-group input[type="tel"],
.hero-form-container .form-group textarea {
    background-color: rgba(255, 255, 255, 0.08); 
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.hero-form-container .form-group input::placeholder,
.hero-form-container .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-form-container .form-group input:focus,
.hero-form-container .form-group textarea:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
# Content Sections
--------------------------------------------------------------*/
.content-section {
    padding: 4rem 0; /* Natural height based on content */
    overflow: hidden; /* For animations */
}

.content-section.bg-light {
    background-color: var(--color-surface);
}

.section-title {
    text-align: center;
    color: var(--color-heading);
    margin-bottom: 1.5rem; /* Standard bottom margin */
    font-weight: 800;
}
.section-title + .section-intro { /* If an intro p follows the title */
    margin-bottom: 3rem; /* More space after intro */
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem; /* Default space after intro */
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us-intro .image-container img {
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# Cards (General - Insights, Success Stories, Gallery, External Links)
--------------------------------------------------------------*/
.card {
    background-color: var(--color-white); /* Cards on light bg should be white */
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center; /* STROGO */
    text-align: center; /* STROGO */
    transition: transform var(--transition-speed-normal) var(--transition-easing), 
                box-shadow var(--transition-speed-normal) var(--transition-easing);
    height: 100%; /* For consistent height in grids/carousels */
}

.content-section.bg-light .card {
    background-color: var(--color-white); /* Ensure cards are white on light grey bg */
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-image { /* STROGO */
    width: 100%;
    margin-bottom: 20px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    overflow: hidden; 
}

.card-image img {
    max-width: 100%;
    object-fit: cover; /* STROGO */
    border-radius: 6px; 
    margin: 0 auto; /* STROGO */
}

/* Specific fixed heights for card images where needed */
.insight-card .card-image,
.gallery-item .card-image {
    height: 200px; /* Adjust as needed */
    border-radius: 6px; /* Ensure container crops image with border radius */
}
.insight-card .card-image img,
.gallery-item .card-image img {
    width: 100%;
    height: 100%;
}


.success-story-card .card-image {
    width: 100px; 
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.success-story-card .card-image img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.card-content {
    width: 100%;
    flex-grow: 1; /* Allows content to fill space, useful for equal height cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes cite to bottom in success stories */
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 10px;
    font-weight: 700;
}

.card-content p, .card-content blockquote {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1; /* Allows paragraph to take available space */
}
.card-content cite {
    font-style: normal;
    font-weight: 500;
    color: var(--color-text-main);
    display: block;
    margin-top: auto; /* Pushes to bottom */
    font-size: 0.9rem;
}

.external-link-card h3 a {
    color: var(--color-primary-dark);
    font-weight: 700;
}
.external-link-card h3 a:hover {
    color: var(--color-accent);
}

/* Carousel Styling (Basic, assumes Owl Carousel or similar structure) */
.owl-carousel {
    display: flex; /* Fallback if JS for carousel fails */
    overflow-x: auto; /* Fallback */
    gap: 20px;
    padding-bottom: 15px; /* For scrollbar or shadow */
}
.owl-carousel .card {
    flex: 0 0 auto; /* Prevent shrinking/growing */
    width: calc(33.333% - 14px); /* Approx 3 cards, adjust gap calculation */
    min-width: 280px; /* Minimum card width */
}

@media (max-width: 992px) {
    .owl-carousel .card {
        width: calc(50% - 10px); /* 2 cards */
    }
}
@media (max-width: 768px) {
    .owl-carousel .card {
        width: calc(100% - 20px); /* 1 card, with some margin */
        min-width: 250px;
    }
}
.cta-success-stories {
    text-align: center;
    margin-top: 2.5rem;
}


/*--------------------------------------------------------------
# Timeline (Research Section)
--------------------------------------------------------------*/
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after { /* The central line */
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--color-border-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }

/* The circles on the timeline */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-white);
    border: 3px solid var(--color-primary-dark);
    top: 25px; /* Adjust vertical alignment */
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even)::after { left: -10px; }

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    border: 2px solid var(--color-border-light);
    border-radius: 50%;
    z-index: 2; /* Above the line's ::after pseudo */
    top: 15px; /* Align with timeline-item::after */
}
.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px; /* (50px width / 2) */
    transform: translateX(50%);
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px; /* (50px width / 2) */
    transform: translateX(-50%);
}
.timeline-icon img {
    max-width: 60%;
    max-height: 60%;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--color-surface);
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}
.timeline-item:nth-child(even) .timeline-content {
    /* For arrow */
}
.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}
.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after { left: 21px; } /* Adjust to new line position */
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 6px; /* Position icon to the left */
        transform: translateX(0);
    }
}

/*--------------------------------------------------------------
# External Resources
--------------------------------------------------------------*/
.external-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/*--------------------------------------------------------------
# Accolades Section
--------------------------------------------------------------*/
.accolades-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
}
.accolade-item {
    text-align: center;
    max-width: 250px;
}
.accolade-item img {
    max-height: 80px; /* Control logo size */
    margin: 0 auto 15px auto;
    filter: grayscale(50%); /* Subtle monochrome effect */
    opacity: 0.8;
    transition: filter var(--transition-speed-normal), opacity var(--transition-speed-normal);
}
.accolade-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.accolade-item p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 2rem;
}
.partner-logo {
    text-align: center;
}
.partner-logo img {
    max-height: 70px; /* Control logo size */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter var(--transition-speed-normal), opacity var(--transition-speed-normal);
    margin: 0 auto 10px auto;
}
.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.partner-logo p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}
/*--------------------------------------------------------------
# Contact CTA Section
--------------------------------------------------------------*/
.contact-cta-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}
.contact-cta-section .section-title,
.contact-cta-section p {
    color: var(--color-white);
}
.contact-cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}
.contact-cta-section .btn-primary:hover {
    background-color: var(--color-surface);
    color: var(--color-primary-dark);
    border-color: var(--color-surface);
}
.contact-cta-section .small-text a {
    color: var(--color-border-light);
    font-weight: bold;
}
.contact-cta-section .small-text a:hover {
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: var(--color-heading); /* Dark footer */
    color: #A9A9A9; /* Light grey text */
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Responsive wrapping */
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #A9A9A9;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-column .social-links-text li a {
    /* Text links already styled by default 'a' in this column */
}

.footer-column p {
    color: #A9A9A9; /* Ensure paragraphs also use this color */
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #444444; /* Subtle divider */
    font-size: 0.85rem;
    color: #888888;
}

/*--------------------------------------------------------------
# Specific Page Styles
--------------------------------------------------------------*/
/* Success Page */
.page-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-surface); /* Light background */
}

.success-container {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
}

.success-icon { /* For a potential checkmark icon */
    font-size: 4rem;
    color: #28a745; /* Green for success */
    margin-bottom: 1.5rem;
}

.success-container h1 {
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.success-container p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}


/* Privacy & Terms Pages */
.page-legal { /* Add this class to body of privacy.html and terms.html */
    padding-top: var(--header-height); /* Ensure content not hidden by fixed header */
}
.legal-content-section {
    padding: 3rem 0; /* Standard section padding */
}
.legal-content-section .container {
    max-width: 800px; /* Narrower for readability */
}
.legal-content-section h1 {
    margin-bottom: 2rem;
    text-align: center;
}
.legal-content-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
.legal-content-section p, 
.legal-content-section ul, 
.legal-content-section ol {
    margin-bottom: 1rem;
    line-height: 1.8;
}
.legal-content-section ul, 
.legal-content-section ol {
    padding-left: 25px;
}

/* Contact Page specific form if different from hero */
.contact-page-form-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: var(--color-surface);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}
.contact-page-form-container .form-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-heading);
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 992px) {
    .hero-title { font-size: clamp(2.4rem, 5vw, 3.5rem); }
    .hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.2rem); }
    .content-section { padding: 3rem 0; }
    .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
}

@media (max-width: 768px) {
    .header-container { padding: 0 15px; } /* Ensure padding inside header */
    .main-nav .nav-menu {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: var(--header-height); /* Below header */
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        border-top: 1px solid var(--color-border-light);
    }
    .main-nav .nav-menu.active {
        display: flex; /* Shown when active */
    }
    .main-nav .nav-menu li {
        width: 100%;
        text-align: center;
    }
    .main-nav .nav-menu li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--color-border-light);
    }
    .main-nav .nav-menu li:last-child a { border-bottom: none; }
    .main-nav .nav-menu li a::after { display: none; /* No underline on mobile */ }

    .nav-toggle { display: block; }

    .hero-section { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 2rem; }
    .hero-form-container { padding: 1.5rem; }

    .columns { flex-direction: column; }
    .column.is-two-thirds { width: 100%; } /* Already handled, but ensure */

    .footer-content { flex-direction: column; text-align: center; }
    .footer-column { min-width: 100%; margin-bottom: 1.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .content-section { padding: 2rem 0; }
    .btn, button, input[type="submit"] { padding: 10px 20px; font-size: 0.9rem; }
}

/* Animate.css compatibility: Elements might start hidden */
.animate__animated {
    visibility: hidden; /* Hide until animation starts */
}
.animate__animated.animate__fadeInUp, /* Example */
.animate__animated.animate__fadeIn {
    visibility: visible; /* Animate.css will handle opacity */
}

/* Parallax effect placeholder for JS to hook into */
.parallax-bg {
    background-attachment: fixed; /* Simple parallax, might be overridden by JS */
}