<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Variables - Complementary Color Scheme with Brutalism &amp; Eco-Minimalism */
:root {
    /* Primary Colors - Complementary Scheme */
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8F6B;
    --secondary-color: #35A7FF;
    --secondary-dark: #2B8CE5;
    --secondary-light: #6BBFFF;
    
    /* Eco-Minimalism Colors */
    --eco-green: #2E7D32;
    --eco-green-light: #4CAF50;
    --eco-green-dark: #1B5E20;
    --earth-brown: #5D4037;
    --earth-beige: #F5F5DC;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Merriweather', serif;
    
    /* Shadows &amp; Effects */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-brutal: 8px 8px 0px var(--black);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-medium: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

/* Button Styles - Global */
.btn,
.button {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2rem;
    border: 3px solid var(--black);
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-brutal);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn:hover,
.button:hover {
    background: var(--primary-dark);
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px var(--black);
    color: var(--white);
}

.btn:active,
.button:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px var(--black);
}

.btn.is-outlined,
.button.is-outlined {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.is-outlined:hover,
.button.is-outlined:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn.is-secondary,
.button.is-secondary {
    background: var(--secondary-color);
    border-color: var(--black);
}

.btn.is-secondary:hover,
.button.is-secondary:hover {
    background: var(--secondary-dark);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--black);
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .title {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 2px 2px 0px var(--black);
}

.navbar-item {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-800);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-item:hover {
    color: var(--primary-color);
    background: transparent;
}

.navbar-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-item:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(46,125,50,0.3));
}

.hero-body {
    position: relative;
    z-index: 2;
}

.hero .title {
    color: var(--white) !important;
    text-shadow: 3px 3px 0px var(--black);
    margin-bottom: 2rem;
}

.hero .subtitle {
    color: var(--white) !important;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
    margin-bottom: 3rem;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, var(--earth-beige), var(--gray-100));
    padding: 6rem 0;
}

.vision-card {
    border: 3px solid var(--black);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    background: var(--white);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vision-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--black);
}

.vision-card .card-image {
    overflow: hidden;
    border-bottom: 3px solid var(--black);
}

.vision-card .card-image img {
    transition: transform var(--transition-slow);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.vision-card:hover .card-image img {
    transform: scale(1.05);
}

.vision-card .card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vision-card .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    background: var(--white);
    padding: 6rem 0;
}

.team-card {
    border: 3px solid var(--black);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    background: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.team-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--secondary-color);
}

.team-card .card-image {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card .card-image .image {
    border: 3px solid var(--black);
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.team-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .card-image img {
    transform: scale(1.1);
}

.team-card .card-content {
    padding: 2rem;
    flex-grow: 1;
}

.team-card .title {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-card .subtitle {
    color: var(--eco-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--white);
    padding: 6rem 0;
}

.awards-section .title,
.awards-section .subtitle {
    color: var(--white);
}

.timeline {
    position: relative;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: center;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    color: var(--gray-800);
    padding: 2rem;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-brutal);
    width: 100%;
    margin-left: 2rem;
}

.timeline-content .title {
    color: var(--primary-color);
}

.timeline-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid var(--gray-300);
}

/* Clientele Section */
.clientele-section {
    background: linear-gradient(135deg, var(--eco-green-light), var(--eco-green));
    padding: 6rem 0;
}

.clientele-section .title,
.clientele-section .subtitle {
    color: var(--white);
}

.clientele-card {
    border: 3px solid var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all var(--transition-medium);
    background: var(--white);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.clientele-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.clientele-card .card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.clientele-card .card-content {
    padding: 2rem;
    flex-grow: 1;
}

.clientele-card .title {
    color: var(--eco-green-dark);
}

/* Press Section */
.press-section {
    background: var(--gray-100);
    padding: 6rem 0;
}

.resource-card {
    border: 3px solid var(--black);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--secondary-color);
}

.resource-card .card-content {
    padding: 2rem;
    flex-grow: 1;
}

.resource-card .title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.resource-card .title a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 6rem 0;
}

.contact-section .title,
.contact-section .subtitle {
    color: var(--white);
}

.contact-card {
    border: 3px solid var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: var(--white);
}

.contact-form .field {
    margin-bottom: 2rem;
}

.contact-form .label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
    border: 2px solid var(--gray-300);
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--primary-color);
}

.footer .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--primary-color);
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-600);
    border-radius: 4px;
    transition: all var(--transition-fast);
    font-weight: 600;
}

.social-links a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 50px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero .title {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.25rem;
    }
    
    .btn,
    .button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .team-card .card-image .image {
        width: 150px;
        height: 150px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

/* Page-specific styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--eco-green-light), var(--eco-green));
}

.success-content {
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border: 3px solid var(--black);
    box-shadow: var(--shadow-brutal);
    border-radius: 8px;
}

.success-content .title {
    color: var(--eco-green-dark);
    margin-bottom: 2rem;
}

/* Privacy and Terms pages */
.privacy-page,
.terms-page,
.about-page,
.contacts-page {
    padding-top: 100px;
    min-height: 100vh;
}

.content-section {
    padding: 4rem 0;
    background: var(--white);
}

.content-section .content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section h1,
.content-section h2,
.content-section h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h1:first-child {
    margin-top: 0;
}

/* Cookie Consent */
.cookie-consent {
    font-family: var(--font-body);
}

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

.cookie-consent p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-consent .button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-consent .button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .button {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section {
        padding: 1rem 0;
    }
}</pre></body></html>