:root {
 --primary-color: #16a34a; /* Green */
 --primary-dark: #15803d;
 --secondary-color: #2563eb; /* Blue */
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-light: #f0fdf4; /* Light Green */
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

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

body {
 font-family: var(--font-main);
 line-height: 1.6;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
 font-weight: 700;
 line-height: 1.2;
 color: var(--text-dark);
}

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

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }

/* Header & Navigation */
.header {
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}

.nav {
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
}

.nav-links {
 display: flex;
 gap: 32px;
}

.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
}

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 12px 24px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 1px solid transparent;
}

.btn-primary {
 background: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}
.btn-primary:hover {
 background: var(--primary-dark);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
}
.btn-secondary {
 background: transparent;
 color: var(--primary-color);
 border: 1px solid var(--primary-color);
}
.btn-secondary:hover {
 background: var(--primary-color);
 color: white;
}
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-full-width { width: 100%; }

/* Hero Section */
.hero-section {
 padding: 60px 0;
 background-color: var(--bg-light);
}

.hero-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 48px;
}

.hero-content { animation: slideInFromLeft 0.8s ease-out; }
.hero-tagline {
 display: inline-block;
 background: rgba(22, 163, 74, 0.1);
 color: var(--primary-dark);
 padding: 6px 14px;
 border-radius: 20px;
 font-size: 0.9rem;
 font-weight: 500;
 margin-bottom: 24px;
}
.hero-title { margin-bottom: 24px; }
.hero-description { font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px; max-width: 550px; }
.hero-buttons { display: flex; gap: 16px; }

.hero-image-container { 
 display: flex;
 justify-content: center;
 align-items: center;
 animation: fadeIn 1s ease-out;
}
.hero-image {
 max-width: 100%;
 height: auto;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}

/* Section Header */
.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 60px;
}
.section-label {
 display: inline-block;
 color: var(--primary-dark);
 font-weight: 600;
 margin-bottom: 12px;
 letter-spacing: 0.5px;
 text-transform: uppercase;
 font-size: 0.9rem;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { max-width: 600px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; color: var(--text-light); }

/* Media Object */
.media-object { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media-object .media-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; max-height: 450px; }
.media-object ul { padding-left: 20px; margin-top: 20px; }
.media-object ul li { margin-bottom: 10px; list-style-type: disc; }
.media-object .btn { margin-top: 24px; }

/* Grid Layout */
.grid-2, .grid-3 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Card */
.card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-image { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { margin-bottom: 12px; font-size: 1.25rem; }
.card-text { margin-bottom: 16px; flex-grow: 1; }
.card-meta { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 16px; }
.read-more { align-self: flex-start; font-weight: 600; }

/* Timeline Section */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after {
 content: '';
 position: absolute;
 width: 2px;
 background: var(--border-color);
 top: 0;
 bottom: 0;
 left: 20px;
}
.timeline-item { position: relative; margin-bottom: 40px; padding-left: 60px; }
.timeline-marker {
 position: absolute;
 left: 0;
 top: 0;
 width: 42px;
 height: 42px;
 border-radius: 50%;
 background: var(--primary-color);
 color: white;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 z-index: 1;
 border: 4px solid var(--bg-white);
}
.timeline-content h3 { margin-bottom: 8px; font-size: 1.2rem; }
.timeline-content p { color: var(--text-light); }

/* Stats Section */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat-card { background: var(--bg-white); padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.stat-caption { font-size: 1rem; color: var(--text-light); }

/* Testimonials */
.testimonial-card {
 background: var(--bg-light);
 padding: 32px;
 border-radius: var(--radius-lg);
 text-align: center;
}
.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 margin: 0 auto 20px;
 object-fit: cover;
 border: 4px solid var(--bg-white);
 box-shadow: var(--shadow-md);
}
.testimonial-text { font-style: italic; margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-author { font-weight: 700; color: var(--text-dark); }
.testimonial-role { font-size: 0.9rem; color: var(--text-muted); }

/* Team Section */
.team-card { text-align: center; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; box-shadow: var(--shadow-md); }
.team-name { font-size: 1.25rem; margin-bottom: 4px; }
.team-role { color: var(--primary-color); font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 0.95rem; }

/* CTA Section */
.cta-section .section-header { margin-bottom: 0; }
.cta-section .btn { margin-top: 32px; }

/* Page Header */
.page-header-section {
 padding: 80px 0;
 text-align: center;
 background-color: var(--bg-light);
}

/* Services Page */
.services-grid { gap: 40px; }
.service-card {
 background: white;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 overflow: hidden;
 display: flex;
 flex-direction: column;
}
.service-card-image { height: 250px; object-fit: cover; width: 100%; }
.service-card-content { padding: 32px; flex-grow: 1; }
.service-card-content h3 { margin-bottom: 16px; }
.service-card-content p { margin-bottom: 20px; }
.service-card-content h4 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card-content ul { padding-left: 20px; }
.service-card-content ul li { list-style: disc; margin-bottom: 8px; }

/* Contact Page */
.contact-page-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.contact-form-container h2, .contact-info-container h2 { margin-bottom: 16px; }
.contact-form-container p, .contact-info-container p { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 500; margin-bottom: 8px; color: var(--text-dark); }
.form-control {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: white;
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.contact-details .contact-detail-item { margin-bottom: 24px; }
.contact-details h4 { font-size: 1.1rem; margin-bottom: 8px; }
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Legal Pages */
.legal-page { padding: 80px 0; }
.legal-page h1 { margin-bottom: 16px; }
.legal-page p { margin-bottom: 16px; }
.legal-page section { margin-bottom: 40px; }
.legal-page h2 { margin-bottom: 16px; border-bottom: 2px solid var(--border-color); padding-bottom: 8px; }
.legal-page ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.cookie-table th, .cookie-table td { border: 1px solid var(--border-color); padding: 12px; text-align: left; }
.cookie-table th { background-color: var(--bg-light); }

/* Footer */
.footer {
 background: var(--text-dark);
 color: #a0aec0;
 padding: 80px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 40px;
 margin-bottom: 60px;
}
.footer-logo { font-size: 1.5rem; font-weight: 700; color: white; display: block; margin-bottom: 16px; }
.footer-description { line-height: 1.7; }
.footer-heading { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 20px; }
.footer-links li, .footer-contact li { margin-bottom: 12px; }
.footer-links a, .footer-contact a { color: #a0aec0; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact address { font-style: normal; }
.footer-bottom {
 border-top: 1px solid #4a5568;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { color: #a0aec0; }
.footer-legal-links a:hover { color: white; }

/* Cookie Banner */
#cookie-banner {
 display: none;
 position: fixed;
 bottom: 16px;
 left: 16px;
 right: 16px;
 background: var(--text-dark);
 color: white;
 padding: 20px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-lg);
 z-index: 2000;
 justify-content: space-between;
 align-items: center;
 gap: 20px;
 max-width: 600px;
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: #63b3ed; text-decoration: underline; }
#cookie-banner div { display: flex; gap: 10px; }

/* Animations */
@keyframes fadeIn {
 from { opacity: 0; }
 to { opacity: 1; }
}
@keyframes slideInFromLeft {
 from { opacity: 0; transform: translateX(-30px); }
 to { opacity: 1; transform: translateX(0); }
}
.fade-in {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
 opacity: 1;
 transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: repeat(2, 1fr); }
 .contact-page-layout { grid-template-columns: 1fr; }
 .hero-container { grid-template-columns: 1fr; text-align: center; }
 .hero-description { margin-left: auto; margin-right: auto; }
 .hero-buttons { justify-content: center; }
 .media-object { grid-template-columns: 1fr; }
 .media-object .media-visual { order: -1; }
}

@media (max-width: 768px) {
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 .grid-2 { grid-template-columns: 1fr; }
 .stats-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 16px; }

 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: -100%;
 width: 80%;
 height: 100vh;
 background: white;
 flex-direction: column;
 padding: 100px 30px 30px;
 gap: 24px;
 box-shadow: var(--shadow-lg);
 transition: var(--transition);
 }
 .nav-links.active { left: 0; }
 .nav-links a::after { display: none; }
 
 #cookie-banner { flex-direction: column; text-align: center; }
}