:root {
 --primary-color: #047857;
 --primary-dark: #065f46;
 --accent-color: #10b981;
 --accent-dark: #059669;
 --header-bg: #064e3b;
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-white: #f9fafb;
 --bg-light: #f3f4f6;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --shadow-sm: 0 1px 2px 0 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 ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- Base & 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-dark);
 background-color: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

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

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

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

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 20px;
}

/* --- Header --- */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: var(--bg-white);
 box-shadow: var(--shadow-sm);
}

.header-top-bar {
 background-color: var(--header-bg);
 color: var(--text-white);
 padding: 8px 0;
 font-size: 0.85rem;
}

.header-top-bar .container {
 display: flex;
 justify-content: flex-end;
 align-items: center;
}

.top-bar-contact { display: flex; align-items: center; gap: 1rem; }
.top-bar-contact a { color: var(--text-white); display: flex; align-items: center; gap: 0.5rem; }
.top-bar-contact a:hover { color: var(--accent-color); }
.top-bar-contact .separator { color: rgba(255,255,255,0.3); }

.nav-main {
 height: 70px;
 display: flex;
 align-items: center;
}

.nav-main .container {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

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

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

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

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

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

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1100;
}

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

/* --- Hero --- */
.hero {
 background-color: var(--bg-light);
 padding: 160px 0 100px;
 text-align: center;
 position: relative;
 overflow: hidden;
}
.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image:
 linear-gradient(135deg, rgba(243, 244, 246, 0.95) 25%, transparent 25%),
 linear-gradient(225deg, rgba(243, 244, 246, 0.95) 25%, transparent 25%),
 linear-gradient(45deg, rgba(243, 244, 246, 0.95) 25%, transparent 25%),
 linear-gradient(315deg, rgba(243, 244, 246, 0.95) 25%, #f9fafb 25%);
 background-size: 40px 40px;
 opacity: 0.3;
}
.hero-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
 margin: 0 auto;
}

.hero-logo {
 font-size: 1.5rem;
 font-weight: 600;
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.hero h1 {
 color: var(--text-dark);
 margin-bottom: 1.5rem;
}

.hero p {
 font-size: 1.15rem;
 color: var(--text-light);
 max-width: 650px;
 margin: 0 auto 2rem;
}

.hero-badges {
 display: flex;
 justify-content: center;
 gap: 1rem;
 margin-top: 2.5rem;
 flex-wrap: wrap;
}
.badge-item {
 background-color: rgba(4, 120, 87, 0.1);
 color: var(--primary-dark);
 padding: 8px 16px;
 border-radius: 999px;
 font-size: 0.9rem;
 font-weight: 500;
}

/* --- Buttons --- */
.btn {
 display: inline-block;
 padding: 14px 32px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-align: center;
}

.btn-primary {
 background-color: var(--primary-color);
 color: var(--bg-white);
}

.btn-primary:hover {
 background-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

.btn-secondary {
 border-color: var(--primary-color);
 color: var(--primary-color);
 background-color: transparent;
}
.btn-secondary:hover{
 background-color: var(--primary-color);
 color: var(--bg-white);
}

/* --- Sections --- */
.section { padding: 80px 0; }
.section.bg-light { background-color: var(--bg-light); }

.section-header { margin-bottom: 50px; }
.section-header.centered { text-align: center; max-width: 750px; margin-left: auto; margin-right: auto; }
.section-header.centered.wide { max-width: 900px; }

.section-label {
 display: inline-block;
 background-color: var(--accent-color);
 color: white;
 padding: 6px 16px;
 border-radius: 999px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 1rem;
 text-transform: uppercase;
}

.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 700px; margin: 0 auto; }

.title-underline {
 width: 80px;
 height: 4px;
 background-color: var(--primary-color);
 margin: 1rem auto 1.5rem;
}
/* Grid layout*/
.grid-2, .grid-3, .grid-4 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Service Overview Section --- */
.service-grid .service-card {
 background-color: var(--bg-white);
 padding: 2rem;
 text-align: center;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-lg);
 transition: var(--transition);
}
.service-grid .service-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}

.service-icon {
 width: 60px;
 height: 60px;
 margin: 0 auto 1.5rem;
 background-color: var(--primary-color);
 color: var(--bg-white);
 border-radius: var(--radius-md);
 display: flex;
 align-items: center;
 justify-content: center;
}
.service-icon svg { width: 32px; height: 32px; }

/* --- Timeline Section --- */
.timeline {
 display: flex;
 justify-content: space-between;
 position: relative;
 max-width: 1000px;
 margin: 40px auto 0;
}
.timeline-item {
 width: 22%;
 text-align: center;
 position: relative;
}
.timeline-number {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 background-color: var(--bg-white);
 border: 3px solid var(--primary-color);
 color: var(--primary-color);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 font-weight: 700;
 margin: 0 auto 1rem;
 z-index: 2;
 position: relative;
}
.timeline-item h3 { font-size: 1.2rem; }
.timeline-item p { font-size: 0.9rem; }
.timeline::before {
 content: '';
 position: absolute;
 top: 25px;
 left: 10%;
 right: 10%;
 height: 3px;
 background-color: var(--border-color);
 z-index: 1;
}
.timeline-connector { display: none; }

/* --- Cards --- */
.card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 overflow: hidden;
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body {
 padding: 1.5rem;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.card-title {
 font-size: 1.2rem;
 margin-bottom: 0.75rem;
}
.card-text {
 flex-grow: 1;
 margin-bottom: 1rem;
}
.card-link {
 font-weight: 600;
 color: var(--primary-color);
 align-self: flex-start;
}
.card-link:hover {
 color: var(--primary-dark);
 text-decoration: underline;
}

/* --- Team Section --- */
.team-grid .team-member-card {
 text-align: center;
}
.team-photo {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 4px solid var(--bg-white);
 box-shadow: var(--shadow-md);
}
.team-name { font-size: 1.25rem; }
.team-title { font-weight: 600; color: var(--primary-color); margin-bottom: 0.5rem; }
.team-bio { font-size: 0.9rem; }

/* --- Logo Carousel --- */
.logo-carousel {
 display: flex;
 align-items: center;
 justify-content: space-around;
 flex-wrap: wrap;
 gap: 2rem;
}
.logo-item img {
 height: 40px;
 object-fit: contain;
 filter: grayscale(100%);
 opacity: 0.6;
 transition: var(--transition);
}
.logo-item img:hover {
 filter: grayscale(0);
 opacity: 1;
}

/* --- Forms & Contact Section --- */
.contact-section {
 display: grid;
 grid-template-columns: 1fr 1.5fr;
 gap: 3rem;
 align-items: center;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.form-control {
 width: 100%;
 padding: 12px 16px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-info ul { margin-top: 1.5rem; }
.contact-info li { margin-bottom: 1rem; }

/* --- Footer --- */
.footer {
 background-color: var(--header-bg);
 color: #a8b2d1;
 padding: 60px 0 20px;
 font-size: 0.9rem;
}
.footer-awards {
 display: flex;
 justify-content: center;
 gap: 2rem;
 padding-bottom: 2rem;
 margin-bottom: 2rem;
 border-bottom: 1px solid rgba(255,255,255,0.1);
 color: var(--text-white);
 font-weight: 500;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 gap: 30px;
 margin-bottom: 40px;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 700;
 color: var(--text-white);
 margin-bottom: 1rem;
 text-transform: uppercase;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a, .footer p a {
 color: #a8b2d1;
 transition: var(--transition);
}
.footer-links a:hover, .footer p a:hover {
 color: var(--accent-color);
}
.footer-column address { font-style: normal; margin-bottom: 1rem; }
.footer-hours { margin-top: 1rem; font-size: 0.85rem; line-height: 1.5; }
.footer-bottom {
 text-align: center;
 padding-top: 20px;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 font-size: 0.85rem;
}

/* --- Cookie Banner --- */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: rgba(31, 41, 55, 0.95);
 color: var(--text-white);
 padding: 1rem;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 z-index: 2000;
 flex-wrap: wrap;
}
#cookie-banner p { margin-bottom: 0; }
#cookie-banner a { color: var(--accent-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-buttons .btn { padding: 8px 16px; font-size: 0.9rem; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .contact-section { grid-template-columns: 1fr; }
 .timeline { flex-wrap: wrap; gap: 2rem 0; justify-content: center; }
 .timeline::before { display: none; }
 .timeline-item { width: 45%; }
 .timeline-connector { display: none; }
 .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
 body.nav-open { overflow: hidden; }
 .nav-links {
 position: fixed;
 top: 0;
 left: -100%;
 width: 300px;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 padding: 100px 30px 30px;
 box-shadow: var(--shadow-lg);
 transition: left 0.4s ease-in-out;
 }
 .nav-links.active { left: 0; }
 .nav-toggle { display: block; }
 
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
 #cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
 .timeline-item { width: 90%; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-heading { margin-top: 1.5rem; }
 .footer-awards { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* --- Service Page Styles --- */
.page-header-section {
 padding: 120px 0 60px;
 background: var(--header-bg);
 color: var(--text-white);
 text-align: center;
}
.page-header-section h1 { color: var(--text-white); }
.page-header-section p { color: #d1d5db; font-size: 1.15rem; max-width: 700px; margin: 0 auto; }

.service-detail-card {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: center;
 margin-bottom: 4rem;
}
.service-detail-card.reverse { grid-template-columns: 1fr 1fr; }
.service-detail-card.reverse .service-detail-img { grid-column: 2; grid-row: 1; }
.service-detail-card.reverse .service-detail-content { grid-column: 1; grid-row: 1; }
.service-detail-img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
 height: 400px;
 object-fit: cover;
}
.service-detail-content ul {
 list-style: disc;
 padding-left: 20px;
 margin-bottom: 2rem;
}
.service-detail-content li {
 margin-bottom: 0.5rem;
 color: var(--text-light);
}
@media (max-width: 768px) {
 .service-detail-card, .service-detail-card.reverse {
 grid-template-columns: 1fr;
 }
 .service-detail-card.reverse .service-detail-img { grid-column: 1; }
}

/* About Page */
.media-object { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.media-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-copy ul { list-style: disc; padding-left: 20px; margin: 1.5rem 0; }
.value-card { background: var(--bg-white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; }
.value-card h4 { color: var(--primary-color); }

@media (max-width: 768px) {
 .media-object { grid-template-columns: 1fr; }
 .media-object .media-visual { order: -1; }
}

/* Contact Page */
.contact-page-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; }
.contact-form-container .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-list { list-style: none; margin-top: 2rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-list svg { color: var(--primary-color); width: 24px; height: 24px; flex-shrink: 0; margin-top: 4px; }
.contact-info-list div span { display: block; }
.section-map { padding: 0; }

@media (max-width: 992px) {
 .contact-page-layout { grid-template-columns: 1fr; }
}

/* Legal Pages */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page > .container > p { margin-bottom: 2rem; color: var(--text-light); }
.legal-page section { margin-bottom: 2.5rem; }
.legal-page h2 { font-size: 1.5rem; border-bottom: 2px solid var(--border-color); padding-bottom: 0.5rem; margin-bottom: 1rem; }
.legal-page ul { list-style: disc; padding-left: 20px; }
.legal-page li { margin-bottom: 0.75rem; }

.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 1.5rem;
}
.cookie-table th, .cookie-table td {
 padding: 12px 15px;
 border: 1px solid var(--border-color);
 text-align: left;
}
.cookie-table th { background-color: var(--bg-light); font-weight: 600; }
.cookie-table .disclaimer { font-size: 0.9rem; margin-top: 1rem; color: var(--text-light); }

/* Thank You Page */
.thank-you-section { padding: 120px 0; }
.thank-you-content { max-width: 600px; margin: 0 auto; }
.thank-you-actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; }