:root {
 --primary-color: #2d8f5e;
 --secondary-color: #0d9488;
 --primary-dark: #226e49;
 --bg-light: #f0fdf4;
 --bg-white: #ffffff;
 --text-dark: #1a1a1a;
 --text-light: #555555;
 --text-muted: #777777;
 --border-color: #e5e7eb;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
 --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
 --transition: all 0.3s ease-in-out;
}

*, *::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;
}

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

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

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

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

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

.section {
 padding: 80px 0;
}

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

.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 50px auto;
}

.section-label {
 display: inline-block;
 font-size: 0.875rem;
 font-weight: 500;
 color: var(--primary-color);
 margin-bottom: 12px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.section-title {
 margin-bottom: 1rem;
}

.section-subtitle {
 font-size: 1.125rem;
 color: var(--text-light);
 line-height: 1.7;
}

.section-footer {
 text-align: center;
 margin-top: 40px;
}

/* Header & Nav */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 background-color: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(8px);
 transition: var(--transition);
}

.header.scrolled {
 box-shadow: var(--shadow-md);
 background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 20px;
}

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

.nav-logo {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
}

.nav-logo-icon {
 width: 28px;
 height: 28px;
 color: var(--primary-color);
}

.nav-links {
 display: flex;
 align-items: center;
 list-style: none;
 gap: 32px;
}

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

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

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

.nav-cta-btn {
 padding: 10px 20px;
 background-color: var(--primary-color);
 color: white;
 border-radius: var(--radius-md);
 font-weight: 500;
 transition: var(--transition);
}

.nav-cta-btn:hover {
 background-color: var(--primary-dark);
 color: white;
 transform: translateY(-2px);
}

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

.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background-color: 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;
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-weight: 500;
 cursor: pointer;
 border: 1px solid transparent;
 transition: var(--transition);
}

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

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

.btn-secondary {
 background-color: var(--bg-white);
 color: var(--text-dark);
 border-color: var(--border-color);
}

.btn-secondary:hover {
 background-color: var(--bg-light);
 border-color: var(--primary-color);
 color: var(--primary-dark);
 transform: translateY(-2px);
}

/* Hero Split */
.hero-split {
 padding-top: 100px;
 padding-bottom: 60px;
}

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

.hero-split-content {
 text-align: center;
}

.hero-title {
 margin: 1rem 0;
}

.hero-subtitle {
 font-size: 1.125rem;
 color: var(--text-light);
 max-width: 600px;
 margin: 0 auto 2rem auto;
}

.hero-actions {
 display: flex;
 justify-content: center;
 gap: 16px;
 flex-wrap: wrap;
}

.hero-split-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
 height: auto;
 object-fit: cover;
 max-height: 500px;
}

/* Trusted By */
.trusted-by {
 padding: 40px 0;
}
.trusted-by-title {
 text-align: center;
 font-size: 1rem;
 font-weight: 500;
 color: var(--text-muted);
 margin-bottom: 24px;
}
.logo-wall {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 40px;
}
.partner-logo {
 height: 30px;
 max-width: 140px;
 object-fit: contain;
 filter: grayscale(1);
 opacity: 0.6;
 transition: var(--transition);
}
.partner-logo:hover {
 filter: grayscale(0);
 opacity: 1;
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr;
 align-items: center;
 gap: 40px;
}
.media-object.reversed .media-visual {
 order: 2;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.media-content ul {
 list-style: none;
 margin-top: 1.5rem;
}
.media-content li {
 position: relative;
 padding-left: 28px;
 margin-bottom: 12px;
}
.media-content li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: 700;
}

/* Icon Grid */
.icon-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.icon-card {
 text-align: center;
 padding: 24px;
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.icon-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}
.icon-card-icon {
 width: 50px;
 height: 50px;
 margin: 0 auto 16px auto;
 color: var(--primary-color);
}
.icon-card-icon svg {
 width: 100%;
 height: 100%;
}
.icon-card-title {
 font-size: 1.25rem;
}
.icon-card-text {
 color: var(--text-light);
}

/* Card Grid */
.card-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px;
}
.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 overflow: hidden;
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}
.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-content {
 padding: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.card-meta {
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.875rem;
 color: var(--text-muted);
 margin-bottom: 12px;
}
.card-meta .tag {
 background-color: var(--bg-light);
 color: var(--primary-color);
 padding: 4px 10px;
 border-radius: 99px;
 font-weight: 500;
}
.card-title {
 font-size: 1.25rem;
 margin-bottom: 12px;
}
.card-text {
 color: var(--text-light);
 flex-grow: 1;
 margin-bottom: 16px;
}

.card-link {
 font-weight: 500;
 display: inline-block;
 align-self: flex-start;
}
.card-link:hover {
 text-decoration: underline;
}

/* Accordion (FAQ) */
.faq-container { max-width: 800px; }
.accordion-item {
 background-color: var(--bg-white);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 margin-bottom: 10px;
}
.accordion-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 padding: 16px 20px;
 background: none;
 border: none;
 font-size: 1.1rem;
 font-weight: 500;
 text-align: left;
 cursor: pointer;
}
.accordion-icon {
 width: 16px;
 height: 16px;
 border-right: 2px solid var(--text-dark);
 border-bottom: 2px solid var(--text-dark);
 transform: rotate(45deg);
 transition: transform 0.3s ease;
}
.accordion-header[aria-expanded="true"] .accordion-icon {
 transform: rotate(-135deg);
}
.accordion-content {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease-out;
}
.accordion-content p {
 padding: 0 20px 16px 20px;
 color: var(--text-light);
}

/* CTA Section */
.cta-section {
 background-color: var(--secondary-color);
 background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
 color: white;
 padding: 60px 0;
}
.cta-content {
 text-align: center;
 max-width: 700px;
 margin: 0 auto;
}
.cta-title { color: white; }
.cta-text {
 font-size: 1.125rem;
 opacity: 0.9;
 margin-bottom: 24px;
}

/* Subscribe Form */
.subscribe-form {
 display: flex;
 justify-content: center;
 gap: 10px;
 flex-wrap: wrap;
}
.subscribe-form .form-group {
 flex-grow: 1;
}
.subscribe-form input {
 width: 100%;
 min-width: 250px;
 padding: 12px 16px;
 border-radius: var(--radius-md);
 border: 1px solid transparent;
 font-size: 1rem;
}
.subscribe-form .btn {
 box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
 background-color: #121a23;
 color: #a0aec0;
 padding: 60px 0 30px;
 margin-top: 60px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.75rem;
 font-weight: 700;
 color: white;
 margin-bottom: 12px;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.7;
}
.footer-social {
 display: flex;
 gap: 12px;
 margin-top: 20px;
}
.footer-social a {
 color: #a0aec0;
 width: 36px;
 height: 36px;
 display: flex;
 align-items: center;
 justify-content: center;
 border: 1px solid #3d4a5c;
 border-radius: 50%;
}
.footer-social a:hover {
 color: white;
 background-color: var(--primary-color);
 border-color: var(--primary-color);
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 16px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.footer-links {
 list-style: none;
}
.footer-links li:not(:last-child) {
 margin-bottom: 10px;
}
.footer-links a {
 color: #a0aec0;
}
.footer-links a:hover {
 color: white;
}
.footer-contact-item {
 margin-bottom: 12px;
 font-size: 0.9rem;
 line-height: 1.7;
}
.footer-contact-item a {
 color: #a0aec0;
}
.footer-contact-item a:hover {
 color: white;
}
.footer-bottom {
 text-align: center;
 padding-top: 30px;
 border-top: 1px solid #3d4a5c;
 font-size: 0.875rem;
}

/* Page Specific */
.page-header-section {
 padding: 120px 0 60px;
 background-color: var(--bg-light);
 text-align: center;
}
.filters-toolbar {
 display: flex;
 flex-wrap: wrap;
 gap: 16px;
 justify-content: center;
 align-items: center;
 margin-bottom: 40px;
}
.search-input {
 min-width: 280px;
 padding: 10px 16px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
}
.filter-buttons {
 display: flex;
 gap: 8px;
}
.filter-btn {
 padding: 8px 16px;
 border: 1px solid var(--border-color);
 background-color: white;
 border-radius: 99px;
 cursor: pointer;
 transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
 background-color: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}

.pagination {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 8px;
 margin-top: 50px;
}
.page-link {
 padding: 8px 14px;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 color: var(--text-dark);
}
.page-link:hover, .page-link.active {
 background-color: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}
.page-link-dots {
 padding: 8px;
}

.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
}
.team-card {
 text-align: center;
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 16px auto;
 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.9rem;
 color: var(--text-light);
}

/* Contact Page */
.contact-page-grid {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 50px;
}
.contact-info-list {
 display: flex;
 flex-direction: column;
 gap: 24px;
}
.contact-info-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
}
.contact-info-icon {
 flex-shrink: 0;
 width: 40px;
 height: 40px;
 background-color: var(--bg-light);
 color: var(--primary-color);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-info-content p { color: var(--text-light); margin: 0; }

.map-section { padding-top: 0; }
.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;
}

/* Forms */
.form-group, .form-group-checkbox { margin-bottom: 20px; }
.form-group label {
 display: block;
 font-weight: 500;
 margin-bottom: 8px;
 color: var(--text-dark);
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 12px 16px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-family: inherit;
 transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(45, 143, 94, 0.2);
}
textarea { resize: vertical; min-height: 120px; }
.form-group-checkbox { display: flex; align-items: center; gap: 10px; }
.form-group-checkbox label { margin: 0; font-weight: 400; font-size: 0.9rem; }
.form-group-checkbox input { width: auto; }

.input-error {
 border-color: #dc2626 !important;
}
.field-error {
 color: #dc2626;
 font-size: 0.875rem;
 margin-top: 6px;
}
button[disabled] .spinner {
 display: inline-block;
}
.spinner {
 display: none;
 width: 16px;
 height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%;
 border-top-color: #fff;
 animation: spin 0.8s linear infinite;
 margin-right: 8px;
 vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Legal Content */
.legal-content h2 { margin-top: 30px; margin-bottom: 15px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-light); margin-bottom: 15px; }
.legal-content ul { padding-left: 20px; }
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 30px 0;
}
.cookie-table th, .cookie-table td {
 padding: 12px;
 text-align: left;
 border-bottom: 1px solid var(--border-color);
}
.cookie-table th {
 background-color: var(--bg-light);
}

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: #1a1a1a;
 color: #e0e0e0;
 padding: 16px 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
 flex-wrap: wrap;
}
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--secondary-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.btn.btn-sm { padding: 8px 16px; font-size: 0.9rem; }

/* Responsive */
@media (min-width: 768px) {
 .hero-split-container { grid-template-columns: 1fr 1fr; }
 .hero-split-content { text-align: left; }
 .hero-actions { justify-content: flex-start; }
 .media-object { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
 .footer-grid {
 grid-template-columns: 1fr 1fr;
 gap: 30px;
 }
}

@media (max-width: 767px) {
 .nav-links {
 position: fixed;
 top: 70px;
 left: 0;
 width: 100%;
 height: calc(100vh - 70px);
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start;
 gap: 0;
 padding: 20px;
 background-color: var(--bg-white);
 transform: translateX(-100%);
 transition: transform 0.3s ease-in-out;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-links li {
 width: 100%;
 }
 .nav-links a {
 display: block;
 padding: 16px;
 font-size: 1.2rem;
 }
 .nav-links a::after { display: none; }
 .nav-toggle { display: block; }
 .nav-cta-btn { display: none; }
 .footer-grid { grid-template-columns: 1fr; }
 .contact-page-grid { grid-template-columns: 1fr; }
}