:root {
 --primary-color: #0d9488; /* Calm Teal */
 --primary-dark: #0f766e;
 --secondary-color: #2d8f5e; /* Healing Green */
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-light: #f0fdf4; /* Pure White (light green tint) */
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 12px;

 --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 -2px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
 
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

.section {
 padding: 80px 0;
}

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

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

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

.section-title {
 margin-bottom: 16px;
}

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

.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;
 text-decoration: none;
}

.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);
 color: white;
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

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

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

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

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

.full-width {
 width: 100%;
}

.header {
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.8);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 transition: var(--transition);
 padding: 10px 0;
}

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

.nav {
 height: 60px;
 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;
 align-items: center;
 gap: 40px;
 list-style: none;
}

.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-cta {
 display: block;
}

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

.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: all 0.3s;
}

.hero-split {
 padding: 80px 0;
 background: var(--bg-light);
}

.hero-split .container {
 padding-top: 2rem;
 padding-bottom: 2rem;
}

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

.hero-split-text h1 {
 margin-bottom: 24px;
}
.hero-split-text p {
 margin-bottom: 32px;
}

.hero-actions {
 display: flex;
 gap: 16px;
 margin-bottom: 32px;
}

.hero-benefits ul {
 list-style: none;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.hero-benefits li {
 display: flex;
 align-items: center;
 gap: 10px;
 font-weight: 500;
 color: var(--text-dark);
}

.hero-benefits svg {
 color: var(--primary-color);
 flex-shrink: 0;
}

.hero-split-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-height: 500px;
}

.page-hero {
 min-height: 40vh;
 padding: 80px 0;
 background-color: var(--primary-color);
 color: white;
 display: flex;
 align-items: center;
}

.page-hero .hero-content {
 text-align: center;
 max-width: 800px;
 margin: 0 auto;
}

.page-hero .section-label {
 background: rgba(255,255,255,0.15);
}

.page-hero h1, .page-hero .section-subtitle {
 color: white;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
 background: 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: 220px;
 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;
 color: var(--text-dark);
}

.card-text {
 color: var(--text-muted);
 font-size: 0.95rem;
 margin-bottom: auto;
}

.feature-card {
 padding: 28px;
 text-align: center;
}
.feature-card .card-icon {
 display: inline-flex;
 padding: 16px;
 background: var(--bg-light);
 border-radius: 50%;
 color: var(--primary-color);
 margin-bottom: 20px;
}
.feature-card .card-icon svg {
 width: 28px;
 height: 28px;
}
.feature-card .card-text {
 margin-bottom: 24px;
}
.read-more {
 font-weight: 600;
 color: var(--primary-color);
 display: inline-block;
 margin-top: auto;
}
.read-more:hover {
 text-decoration: underline;
}

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

.media-object.reverse {
 grid-template-columns: 1fr 1fr;
}
.media-object.reverse .media-visual {
 order: 2;
}

.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-height: 450px;
}
.media-copy ul {
 list-style-type: none;
 padding-left: 0;
 margin-top: 20px;
 margin-bottom: 20px;
}
.media-copy ul li {
 position: relative;
 padding-left: 25px;
 margin-bottom: 10px;
}
.media-copy ul li::before {
 content: "";
 position: absolute;
 left: 0;
 color: var(--secondary-color);
 font-weight: 700;
}
.media-copy .cta-buttons {
 margin-top: 24px;
}

.timeline {
 position: relative;
 margin-top: 24px;
}

.timeline-step {
 padding: 20px;
 background: var(--bg-white);
 border-left: 4px solid var(--primary-color);
 margin-bottom: 16px;
 border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.timeline-step h3 {
 margin-bottom: 8px;
}
.timeline-step p {
 color: var(--text-muted);
}

.cta-banner {
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
 padding: 48px;
 border-radius: var(--radius-lg);
 color: white;
 display: flex;
 align-items: center;
 justify-content: space-between;
 flex-wrap: wrap;
 gap: 20px
}
.cta-banner h2 {
 color: white;
 margin-bottom: 8px;
}
.cta-banner p {
 max-width: 500px;
 opacity: 0.9;
}

.styled-list {
 margin-top: 20px;
 list-style: none;
}
.styled-list li {
 padding-left: 20px;
 position: relative;
 margin-bottom: 10px;
}
.styled-list li::before {
 content: '';
 width: 8px;
 height: 8px;
 background: var(--primary-color);
 border-radius: 50%;
 position: absolute;
 left: 0;
 top: 8px;
}

.values-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
}
.value-item {
 background: var(--bg-light);
 padding: 24px;
 border-radius: var(--radius-md);
 border-left: 4px solid var(--primary-color);
}
.value-item h3 {
 margin-bottom: 8px;
}

.team-card {
 text-align: center;
 background: white;
 padding: 24px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 20px;
 border: 4px solid var(--bg-white);
 box-shadow: 0 0 0 4px var(--primary-color);
}
.team-name {
 margin-bottom: 4px;
}
.team-role {
 color: var(--primary-color);
 font-weight: 500;
 margin-bottom: 12px;
}

.contact-layout {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 48px;
}
.contact-form-container, .contact-info-container {
 background: white;
 padding: 32px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.contact-form-container h2, .contact-info-container h2 {
 margin-bottom: 24px;
}
.form-group {
 margin-bottom: 20px;
}
.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 600;
 color: var(--text-dark);
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-family: inherit;
 font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}
textarea {
 resize: vertical;
 min-height: 120px;
}
.checkbox-group {
 display: flex;
 align-items: center;
 gap: 10px;
}
.checkbox-group input {
 width: auto;
}
.checkbox-group label {
 margin-bottom: 0;
 font-weight: 400;
}
.checkbox-group a {
 text-decoration: underline;
}

.contact-info-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 margin-bottom: 24px;
}
.contact-info-icon {
 flex-shrink: 0;
 color: var(--primary-color);
 margin-top: 4px;
}
.contact-info-icon svg {
 width: 24px; height: 24px;
}
.contact-info-text h4 {
 margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
 margin: 0;
 color: var(--text-light);
}
.map-section {
 padding-top: 0;
}
.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
}
.map-container iframe {
 width: 100%; height: 100%; border: none;
}
.thank-you-content {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 min-height: 50vh;
}
.thank-you-icon {
 color: var(--primary-color);
 margin-bottom: 24px;
}
.thank-you-content h1 {
 margin-bottom: 16px;
}
.thank-you-content p {
 margin-bottom: 32px;
}

.legal-page {
 padding: 80px 0;
}
.legal-page .container {
 max-width: 800px;
}
.legal-page h1 {
 margin-bottom: 16px;
}
.legal-page p:first-of-type {
 color: var(--text-muted);
 margin-bottom: 32px;
 font-weight: 500;
}
.legal-page h3 {
 margin-top: 32px;
 margin-bottom: 12px;
}
.legal-page p, .legal-page ul, .legal-page table {
 margin-bottom: 16px;
}
.legal-page ul {
 padding-left: 20px;
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
}
.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 {
 background: var(--text-dark);
 color: #a0aec0;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 16px;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
 max-width: 280px;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 12px;
}
.footer-links a, .footer-contact-item a, .footer-contact-item span {
 color: #a0aec0;
 font-size: 0.9rem;
}
.footer-links a:hover, .footer-contact-item a:hover {
 color: white;
}
.footer-contact-item {
 display: flex;
 gap: 12px;
 align-items: flex-start;
 margin-bottom: 16px;
}
.footer-contact-item svg {
 flex-shrink: 0;
 margin-top: 4px;
 color: var(--primary-color);
}
.footer-social {
 display: flex;
 gap: 12px;
 margin-top: 20px;
}
.footer-social a {
 width: 36px;
 height: 36px;
 border-radius: 50%;
 background: rgba(255,255,255,0.1);
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
}
.footer-social a:hover {
 background: var(--primary-color);
}
.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.1);
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
}
.footer-copyright, .footer-legal-links a {
 font-size: 0.85rem;
 color: #718096;
}
.footer-legal-links {
 display: flex;
 gap: 24px;
}
.footer-legal-links a:hover {
 color: white;
 text-decoration: underline;
}

.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--text-dark);
 color: white;
 padding: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 20px;
 z-index: 1001;
 display: none;
 box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
.cookie-banner p {
 margin-bottom: 0;
}
.cookie-banner a {
 color: var(--primary-color);
 text-decoration: underline;
}
.cookie-buttons {
 display: flex;
 gap: 12px;
 flex-shrink: 0;
}
.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.field-error {
 color: #dc2626;
 font-size: 0.85rem;
 margin-top: 4px;
 animation: fadeIn 0.3s ease;
}

.spinner {
 display: inline-block;
 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); }
}

@keyframes fadeIn {
 from { opacity: 0; transform: translateY(-5px); }
 to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .footer-grid {
 grid-template-columns: 1fr 1fr;
 }
}

@media (max-width: 768px) {
 h1 { font-size: 2rem; }
 h2 { font-size: 1.75rem; }
 .section { padding: 60px 0; }
 .nav-cta { display: none; }
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: white;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 24px;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-links a { font-size: 1.25rem; }
 .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

 .hero-split-content { grid-template-columns: 1fr; }
 .hero-split-visual { order: -1; }
 .grid-2, .grid-3 { grid-template-columns: 1fr; }
 .cta-banner { flex-direction: column; text-align: center; }
 .contact-layout { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; }
 .cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}