<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* style.css - Brutalist Design System with Adaptive Typography &amp; Complementary Colors */

:root {
    /* Color Scheme: Complementary (Orange &amp; Teal) with Brutalist neutrals */
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Nunito', sans-serif;

    /* Brutalist Core Colors */
    --color-primary: #FF7A00;          /* Vibrant Orange */
    --color-primary-darker: #D96800;   /* Darker Orange for hover/active */
    --color-accent: #037971;           /* Deep Teal - Complementary to Orange */
    --color-accent-lighter: #04A99E;  /* Lighter Teal for hover/active */
    
    --color-highlight: #FFB800;        /* Bright Yellow/Orange for emphasis on dark backgrounds */

    /* Neutrals */
    --color-dark: #1A1A1A;             /* Very Dark Gray / Near Black */
    --color-dark-medium: #2B3A42;      /* Dark Slate Blue (Used in HTML header) */
    --color-light-bg: #F5F5F5;         /* Off-White / Light Gray Background */
    --color-white: #FFFFFF;
    --color-gray-text: #555555;        /* Medium Gray for secondary text */
    --color-gray-light-text: #A9A9A9;  /* Light Gray for footer text, etc. */
    --color-gray-border: #DDDDDD;      /* Light Gray for subtle borders */

    /* Text Colors */
    --text-on-dark: var(--color-white);
    --text-on-light: var(--color-dark);
    --text-on-primary: var(--color-white);
    --text-on-accent: var(--color-white);

    /* Borders */
    --border-width-strong: 3px;
    --border-width-standard: 2px;
    --border-color-strong: var(--color-dark);
    --border-color-interactive: var(--color-primary);
    --border-radius-sharp: 0px; /* Brutalist: no rounded corners */

    /* Shadows (Subtle, for depth if needed, or stark for brutalist) */
    --shadow-brutalist: 4px 4px 0px var(--color-dark); /* Hard offset shadow */
    --shadow-subtle: 0 2px 5px rgba(0,0,0,0.1);

    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.3s ease-in-out;

    /* Spacing */
    --spacing-xs: 0.5rem;  /* 8px */
    --spacing-sm: 1rem;    /* 16px */
    --spacing-md: 1.5rem;  /* 24px */
    --spacing-lg: 2rem;    /* 32px */
    --spacing-xl: 3rem;    /* 48px */
    --spacing-xxl: 4rem;   /* 64px */

    /* Header Height (for page content offset if header is sticky) */
    --header-height: 70px; /* Approximate, adjust based on actual header height */
}

/* 1. Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.7; /* Slightly more for readability */
    color: var(--text-on-light);
    background-color: var(--color-light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    display: flex; /* For centering success page */
    flex-direction: column; /* For centering success page */
    min-height: 100vh; /* For centering success page */
}

/* Page transition placeholder */
body.page-transition-fade-out {
    /*opacity: 0;*/
    transition: opacity 0.5s ease-in-out;
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
    text-wrap: balance; /* Improves headline wrapping */
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p {
    margin-bottom: var(--spacing-md);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: var(--color-gray-text);
    max-width: 75ch; /* Optimal line length for readability */
}

a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700; /* Make links stand out more */
    transition: color var(--transition-fast), background-color var(--transition-fast);
}
a:hover, a:focus {
    color: var(--color-primary-darker);
    text-decoration: underline;
    text-decoration-thickness: 2px; /* Brutalist underline */
    text-underline-offset: 3px;
}

strong { font-weight: 700; color: var(--color-dark); }
em { font-style: italic; }

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg); /* Standard indent */
}
li {
    margin-bottom: var(--spacing-xs);
    color: var(--color-gray-text);
}

/* 3. Layout &amp; Container */
.site-container {
    width: 100%;
    flex-grow: 1; /* For centering success page */
    display: flex; /* For centering success page */
    flex-direction: column; /* For centering success page */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

main {
    flex-grow: 1;
    padding-top: var(--header-height); /* Offset for sticky header */
}

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

/* 4. Global Button Styles */
.cta-button,
.submit-button,
button, /* Generic button styling */
input[type="submit"], /* Generic submit styling */
input[type="button"] {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: var(--border-width-standard) solid var(--color-primary);
    border-radius: var(--border-radius-sharp);
    color: var(--text-on-primary);
    background-color: var(--color-primary);
    text-align: center;
    cursor: pointer;
    transition: background-color var(--transition-medium), color var(--transition-medium), transform var(--transition-fast), box-shadow var(--transition-fast);
    user-select: none;
}

.cta-button:hover, .cta-button:focus,
.submit-button:hover, .submit-button:focus,
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus,
input[type="button"]:hover, input[type="button"]:focus {
    background-color: var(--color-primary-darker);
    color: var(--text-on-primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-brutalist);
}
.cta-button:active,
.submit-button:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 0px var(--color-dark);
}

/* Secondary/Outline Button Style Example */
.button-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.button-outline:hover, .button-outline:focus {
    background-color: var(--color-primary);
    color: var(--text-on-primary);
}


/* 5. Form Styles */
.form-group {
    margin-bottom: var(--spacing-lg);
}
.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="search"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm);
    border: var(--border-width-standard) solid var(--color-dark);
    border-radius: var(--border-radius-sharp);
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    background-color: var(--color-white);
    color: var(--text-on-light);
    transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}
.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 input[type="search"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 var(--border-width-standard) var(--color-primary); /* Brutalist focus glow */
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* 6. Card Base Styles */
.card {
    background-color: var(--color-white);
    border: var(--border-width-strong) solid var(--border-color-strong);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    display: flex; /* For centering content as per strict rule */
    flex-direction: column; /* For centering content */
    align-items: stretch; /* Stretch children like card-image, card-content */
    text-align: left; /* Default text alignment */
    transition: box-shadow var(--transition-medium);
}
.card:hover {
    box-shadow: var(--shadow-brutalist);
}

.card-image {
    width: 100%;
    height: 250px; /* Fixed height as requested */
    overflow: hidden;
    position: relative; /* For potential overlays */
    background-color: var(--color-gray-border); /* Placeholder bg */
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, may crop */
    display: block;
    transition: transform var(--transition-medium);
}
.card:hover .card-image img {
    transform: scale(1.05);
}
.card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-content &gt; *:last-child {
    margin-bottom: 0; /* Remove bottom margin from last element in card content */
}
.card-title {
    margin-top: 0;
    color: var(--color-primary);
}
.dark-section .card {
    background-color: var(--color-dark-medium);
    border-color: var(--color-primary);
    color: var(--text-on-dark);
}
.dark-section .card .card-title {
    color: var(--color-highlight);
}
.dark-section .card p, .dark-section .card li {
    color: var(--color-light-bg);
}
.dark-section .card a {
    color: var(--color-highlight);
}
.dark-section .card a:hover {
    color: var(--color-white);
}

/* For centering content within cards if child elements don't fill width */
.card.text-center, .card .text-center {
    text-align: center;
}
.card.items-center, .card .items-center { /* If direct children need centering */
    align-items: center;
}


/* 7. Header &amp; Navigation */
.site-header {
    background-color: var(--color-dark-medium);
    padding: var(--spacing-sm) 0;
    position: fixed; /* Fixed navigation bar */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
}
.logo-accent {
    color: var(--color-primary);
}
.main-navigation .nav-list {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
    margin: 0; padding: 0; /* Reset */
}
.main-navigation .nav-link {
    color: var(--color-white);
    font-weight: 700;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    padding: var(--spacing-xs) 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.main-navigation .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: var(--border-width-standard);
    background-color: var(--color-primary);
    transition: width var(--transition-medium);
}
.main-navigation .nav-link:hover::after,
.main-navigation .nav-link.active::after {
    width: 100%;
}
.main-navigation .nav-link:hover,
.main-navigation .nav-link.active {
    color: var(--color-primary);
    text-decoration: none;
}

/* Burger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 28px; /* Slightly larger */
    height: var(--border-width-strong);
    background-color: var(--color-white);
    position: relative;
    transition: transform var(--transition-medium);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--border-width-strong);
    background-color: var(--color-white);
    transition: transform var(--transition-medium), top var(--transition-medium), bottom var(--transition-medium), opacity var(--transition-medium);
}
.hamburger::before { top: -9px; } /* More space */
.hamburger::after { bottom: -9px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent; /* Line disappears */
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* 8. Hero Section */
.hero-section {
    position: relative;
    min-height: calc(85vh - var(--header-height)); /* Adjust height based on viewport, minus header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white); /* Hero text must be white */
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden; /* For particle canvas */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Standard dark overlay */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    /* Optional: Brutalist pattern overlay */
    /* background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.1)),
                      linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.1));
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px; */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--color-white); /* Strict: Hero text is white */
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* Ensure readability */
}
.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--color-light-bg); /* Lighter text for subtitle, still white-ish */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-section .cta-button {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

/* Particle Canvas (JS will handle actual particles) */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind overlay if overlay is semi-transparent to particles */
}
/* Basic CSS "particle" effect for placeholder */
.hero-section::after { /* Only if canvas is not used or as fallback */
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    /* background-image: radial-gradient(var(--color-primary) 1px, transparent 1px),
                      radial-gradient(var(--color-accent) 1px, transparent 1px);
    background-size: 20px 20px, 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.1;
    animation: moveParticles 20s linear infinite; */
}
@keyframes moveParticles {
    0% { background-position: 0 0, 15px 15px; }
    100% { background-position: 200px 200px, 215px 215px; }
}

/* 9. General Section Styling */
.section-padding {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}
.section-title::after { /* Brutalist underline */
    content: '';
    display: block;
    width: 100px;
    height: var(--border-width-strong);
    background-color: var(--color-primary);
    margin: var(--spacing-sm) auto 0;
}
.section-intro {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-xl);
    color: var(--color-gray-text);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}
.dark-section {
    background-color: var(--color-dark);
    color: var(--text-on-dark);
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4, .dark-section h5, .dark-section h6 {
    color: var(--color-white);
}
.dark-section p, .dark-section li {
    color: var(--color-light-bg); /* Slightly off-white for better readability */
}
.dark-section a {
    color: var(--color-highlight);
}
.dark-section a:hover, .dark-section a:focus {
    color: var(--color-primary);
}
.dark-section .section-title::after {
    background-color: var(--color-highlight);
}
.dark-section .section-intro {
    color: var(--color-gray-light-text);
}

/* 10. Specific Section Styles */

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); /* Responsive columns */
    gap: var(--spacing-lg);
}
.feature-card .card-image { height: 200px; } /* Specific height for feature images */

/* History Section (Timeline) */
.history-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.history-timeline::before { /* The central line */
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: var(--border-width-strong);
    background-color: var(--color-primary);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-xl);
    position: relative;
    align-items: flex-start;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-item:nth-child(odd) .timeline-content-wrapper {
    padding-left: calc(50% + 40px); /* Space from center line */
    text-align: left;
    width: 100%;
}
.timeline-item:nth-child(even) .timeline-content-wrapper {
    padding-right: calc(50% + 40px); /* Space from center line */
    text-align: right;
    width: 100%;
}
.timeline-image-container {
    width: calc(50% - 40px); /* Adjust width based on padding */
    position: relative;
    border: var(--border-width-strong) solid var(--color-highlight);
    padding: var(--spacing-xs);
    background-color: var(--color-dark-medium);
    flex-shrink: 0; /* Prevent shrinking */
}
.timeline-item:nth-child(odd) .timeline-image-container {
    margin-right: 80px; /* Space between image and line */
}
.timeline-item:nth-child(even) .timeline-image-container {
    margin-left: 80px; /* Space between image and line */
}
.timeline-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height: 250px; /* Limit height */
    object-fit: cover;
    display: block;
}
.timeline-content {
    /* Already wrapped by .timeline-content-wrapper */
}
.timeline-content-wrapper::before { /* The circle on the timeline */
    content: '';
    position: absolute;
    top: 20px; /* Adjust for vertical alignment */
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: var(--border-width-strong) solid var(--color-primary);
    z-index: 1;
}
.timeline-title {
    margin-top: 0;
    color: var(--color-highlight);
}

/* Partners Section */
.partners-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
}
.partner-item {
    text-align: center;
    padding: var(--spacing-md);
    border: var(--border-width-standard) solid var(--color-gray-border);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    background-color: var(--color-white);
    min-width: 180px;
}
.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-brutalist);
    border-color: var(--color-dark);
}
.partner-item img {
    max-width: 150px;
    height: 75px; /* Fixed height for logos */
    object-fit: contain; /* Ensure logo is visible fully */
    margin-bottom: var(--spacing-sm);
    filter: grayscale(100%);
    transition: filter var(--transition-medium);
}
.partner-item:hover img {
    filter: grayscale(0%);
}
.partner-name {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    font-weight: 700;
    margin-bottom: 0;
}

/* Accolades Section */
.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--spacing-lg);
}
.accolade-card { /* Extends .card */
    align-items: center; /* Center avatar and text block */
    text-align: center;
}
.accolade-card .card-image { /* Specific for accolade avatar container */
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-sharp); /* Brutalist, so no circle unless explicitly stated */
    margin-bottom: var(--spacing-md);
    border: var(--border-width-strong) solid var(--color-highlight);
    padding: var(--spacing-xs); /* Frame for avatar */
    background-color: var(--color-dark-medium); /* Match dark section card background */
}
.accolade-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.accolade-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    color: var(--color-light-bg); /* On dark section */
    font-size: clamp(1rem, 1.8vw, 1.1rem);
}
.accolade-author {
    font-weight: 700;
    color: var(--color-white); /* On dark section */
    font-family: var(--font-primary);
}

/* External Resources Section */
.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--spacing-lg);
}
.resource-item.card { /* Extends .card */
    border-left: var(--border-width-strong) solid var(--color-primary);
    box-shadow: none; /* Simpler look for resource links */
}
.resource-item.card:hover {
    box-shadow: 2px 2px 0 var(--color-primary);
}
.resource-title {
    margin-bottom: var(--spacing-xs);
}
.resource-title a {
    font-family: var(--font-primary);
    color: var(--color-dark);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.resource-title a:hover {
    color: var(--color-primary);
}
.resource-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--color-gray-text);
    line-height: 1.5;
}

/* Contact Form Section on Index */
.contact-section#contact-form .contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border: var(--border-width-strong) solid var(--color-dark);
}

/* 11. Footer */
.site-footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background-color: var(--color-dark);
    color: var(--text-on-dark);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}
.footer-column .footer-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}
.footer-column p {
    color: var(--color-gray-light-text);
    max-width: none; /* Override default p max-width */
}
.footer-nav-list, .footer-social-list {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-nav-list li, .footer-social-list li {
    margin-bottom: var(--spacing-sm);
}
.footer-link {
    color: var(--color-gray-light-text);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: normal; /* Footer links can be normal weight */
}
.footer-link:hover, .footer-link:focus {
    color: var(--color-highlight);
    text-decoration: underline;
}
/* Styling for text-based social links */
.footer-social-list .footer-link {
    font-family: var(--font-secondary); /* Or primary for more impact */
    font-weight: 700; /* Make them a bit bolder */
    /* Add more distinct styling if needed, like a small icon via ::before if desired */
}
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-dark-medium);
    font-size: 0.9rem;
    color: var(--color-gray-light-text);
}

/* 12. Page-Specific Styles */

/* Generic Page Header (About, Contact, etc.) */
.page-header-section {
    position: relative;
    min-height: 35vh; /* Shorter than main hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: var(--spacing-lg) var(--spacing-md);
}
.page-header-section .hero-overlay { /* Re-use hero overlay */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); /* Slightly darker for sub-pages */
}
.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-light-bg);
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Content Section on static pages (About, Privacy, Terms) */
.content-section .content-title { /* Title within main content area */
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    text-align: left; /* Default for articles */
}
.content-section .content-title::after { /* Remove global underline for these */
    display: none;
}
.content-section article, .content-section .text-content {
    margin-bottom: var(--spacing-xl);
}
.content-section .text-content h2 { text-align: left; margin-bottom: var(--spacing-sm); }
.content-section .text-content h2::after { display: none; }
.content-section .text-content p, 
.content-section .text-content ul, 
.content-section .text-content ol {
    max-width: 80ch; /* Better readability for long text */
}
.content-section .text-content ul, 
.content-section .text-content ol {
    padding-left: var(--spacing-lg);
}

/* Privacy &amp; Terms Pages - Specific Padding */
/* Add class="privacy-page" or "terms-page" to the body tag of respective HTML files */
.privacy-page main .content-section:first-of-type,
.terms-page main .content-section:first-of-type {
    padding-top: 100px; /* As requested */
}
.privacy-page main .page-header-section + .content-section, /* If page-header is present */
.terms-page main .page-header-section + .content-section {
    padding-top: 100px; /* If page-header is short, this pushes content down */
}


/* About Page - Team Section */
.team-section .content-title { text-align: center; } /* Center the "Meet the Team" title */
.team-section .content-title::after { /* Restore underline for section title */
    content: ''; display: block; width: 100px; height: var(--border-width-strong);
    background-color: var(--color-primary); margin: var(--spacing-sm) auto 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--spacing-lg);
}
.team-member-card { /* Extends .card */
    align-items: center; /* Center content */
    text-align: center;
}
.team-member-card .card-image { /* Override general card image height */
    width: 200px; /* Square avatar */
    height: 200px;
    border-radius: var(--border-radius-sharp);
    margin: 0 auto var(--spacing-md);
    border: var(--border-width-strong) solid var(--color-primary);
    padding: var(--spacing-xs);
    background-color: var(--color-light-bg);
}
.team-member-name {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}
.team-member-role {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

/* Contact Page */
.contact-page-main .contact-section { /* Assuming main has class .contact-page-main */
     padding-top: var(--spacing-lg); /* Less padding if it follows a page header */
}
.contact-info-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}
@media (min-width: 992px) { /* Larger screens: two columns */
    .contact-info-form-wrapper {
        grid-template-columns: minmax(300px, 1fr) 2fr; /* Info column, Form column */
    }
}
.contact-info .content-title { text-align: left; }
.contact-info .content-title::after { display: none; }
.contact-info ul { list-style: none; padding-left: 0; }
.contact-info li { margin-bottom: var(--spacing-md); }
.contact-info strong {
    display: block;
    font-family: var(--font-primary);
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}
.contact-info address {
    font-style: normal;
    line-height: 1.6;
    margin-top: var(--spacing-md);
    color: var(--color-gray-text);
}
.contact-page-main .contact-form .content-title { text-align: left; }
.contact-page-main .contact-form .content-title::after { display: none; }

/* Success Page */
body.success-page { /* Add class="success-page" to body tag of success.html */
    /* min-height: 100vh; Handled by body base style for flex */
    /* display: flex; Handled by body base style for flex */
    /* flex-direction: column; Handled by body base style for flex */
    /* justify-content: center; Handled by .site-container on success page */
    /* align-items: center; Handled by .site-container on success page */
}
.success-page .site-container { /* Make site-container fill body and center content */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.success-section {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    width: 100%; /* Ensure it takes width for centering text */
}
.success-icon {
    margin-bottom: var(--spacing-lg);
}
.success-icon img {
    width: 100px; height: 100px; /* Adjust as needed */
    margin: 0 auto; /* Center if it's block */
}
.success-title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}
.success-message {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gray-text);
}
.success-section .cta-button {
    margin-top: var(--spacing-md);
}

/* Read More Link Style */
.read-more-link {
    display: inline-block;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: var(--border-width-standard) solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    font-weight: 700;
    font-size: 0.9rem;
}
.read-more-link:hover, .read-more-link:focus {
    background-color: var(--color-primary);
    color: var(--text-on-primary);
    text-decoration: none;
}

/* 13. Animations &amp; Transitions (Scroll, Hover) */
.animate-on-scroll {
    /*opacity: 0;*/
    transform: translateY(40px); /* Start slightly lower */
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Add more specific animations if needed */


/* 14. Responsive Styles (Media Queries) */
@media (max-width: 991px) { /* Tablet and below */
    .history-timeline::before {
        left: 30px; /* Shift line to the left for single column */
        transform: none;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start; /* Align to the left with the line */
    }
    .timeline-item:nth-child(odd) .timeline-content-wrapper,
    .timeline-item:nth-child(even) .timeline-content-wrapper {
        padding-left: 60px; /* Space from the shifted line */
        padding-right: 0;
        text-align: left;
        width: auto; /* Let it take available space */
    }
    .timeline-image-container {
        width: calc(100% - 60px); /* Take space next to line */
        margin: 0 0 var(--spacing-md) 60px; /* Align with content */
    }
    .timeline-item:nth-child(odd) .timeline-image-container,
    .timeline-item:nth-child(even) .timeline-image-container {
        margin-left: 60px; margin-right: 0;
    }
    .timeline-content-wrapper::before {
        left: 30px; /* Align with the shifted line */
        top: 10px;
    }
}

@media (max-width: 768px) { /* Mobile devices */
    h1 { font-size: clamp(2rem, 6vw, 3rem); }
    h2 { font-size: clamp(1.6rem, 5vw, 2.5rem); }

    .section-padding {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
    }

    .nav-toggle {
        display: block;
    }
    .main-navigation .nav-list {
        flex-direction: column;
        position: fixed;
        top: var(--header-height); /* Position below fixed header */
        right: -100%; /* Start off-screen */
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-dark-medium);
        padding: var(--spacing-lg);
        transition: right var(--transition-medium);
        box-shadow: -3px 0 8px rgba(0,0,0,0.2);
        gap: var(--spacing-md);
        align-items: flex-start;
        overflow-y: auto; /* Scroll if content exceeds height */
    }
    .main-navigation .nav-list.is-active {
        right: 0; /* Slide in */
    }
    .main-navigation .nav-link {
        font-size: 1.2rem;
        padding: var(--spacing-sm) 0;
        width: 100%;
    }
    .main-navigation .nav-link::after {
        bottom: 0; /* Adjust underline position for vertical items */
    }

    .hero-section {
        min-height: calc(75vh - var(--header-height));
    }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-subtitle { font-size: clamp(1.1rem, 4vw, 1.4rem); }

    .footer-container {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
    }
    .footer-column .footer-heading {
        margin-top: var(--spacing-lg);
    }
    .footer-nav-list, .footer-social-list {
        padding-left: 0;
    }
    .footer-column p { text-align: center; margin-left:auto; margin-right: auto;}

    .history-timeline::before {
        left: 15px; /* Even more to the left on mobile */
    }
    .timeline-item:nth-child(odd) .timeline-content-wrapper,
    .timeline-item:nth-child(even) .timeline-content-wrapper {
        padding-left: 40px; /* Adjust padding */
    }
    .timeline-image-container {
        width: calc(100% - 40px);
        margin-left: 40px;
    }
    .timeline-content-wrapper::before {
        left: 15px;
        width: 20px; height: 20px;
    }
}

/* Accessibility: Focus Visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: var(--border-width-strong) solid var(--color-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 var(--border-width-standard) var(--color-accent-lighter);
}
/* Ensure high contrast for focus styles on dark backgrounds */
.dark-section a:focus-visible,
.dark-section button:focus-visible {
    outline-color: var(--color-highlight);
    box-shadow: 0 0 0 var(--border-width-standard) var(--color-primary);
}
.nav-toggle{
    display: none;
}</pre></body></html>