:root {
 --primary-color: #3b82f6; 
 --primary-dark: #2563eb;
 --secondary-color: #6b7280; 
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-light: #f9fafb;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --radius: 12px;
 --shadow: 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', sans-serif;
}

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

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

.section {
 padding: 80px 0;
}
.section.pt-0 { padding-top: 0; }
.bg-light { background-color: var(--bg-light); }

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

.section-label {
 display: inline-block;
 font-size: 0.85rem;
 font-weight: 600;
 color: var(--primary-color);
 background-color: rgba(59, 130, 246, 0.1);
 padding: 6px 16px;
 border-radius: 20px;
 margin-bottom: 12px;
}
.badge {
 display: inline-block;
 background: var(--primary-color);
 color: white;
 padding: 6px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 16px;
}

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

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

.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background-color: rgba(255,255,255,0.8);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.nav-logo {
 font-size: 1.5rem;
 font-weight: 800;
 color: var(--text-dark);
}
.nav-links {
 display: flex;
 list-style: none;
 gap: 32px;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-light);
 padding: 5px 0;
 position: relative;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
 color: var(--text-dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}
.nav-cta {
 background: var(--primary-color);
 color: white !important;
 padding: 8px 16px !important;
 border-radius: var(--radius);
 transition: var(--transition);
}
.nav-cta:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
}
.nav-cta::after { display: none; }

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background-color: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
}

.page-hero {
 padding: 120px 0 80px;
}
.hero-inner {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px; max-width: 550px;}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.hero-visual img {
 width: 100%;
 border-radius: var(--radius);
 box-shadow: var(--shadow-lg);
}

.btn {
 display: inline-flex;
 padding: 14px 28px;
 font-weight: 600;
 border-radius: var(--radius);
 transition: var(--transition);
 border: 2px solid transparent;
 cursor: pointer;
}
.btn-primary {
 background-color: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}
.btn-secondary {
 background-color: transparent;
 border-color: var(--border-color);
 color: var(--text-dark);
}
.btn-secondary:hover {
 border-color: var(--primary-color);
 background-color: rgba(59, 130, 246, 0.1);
 color: var(--primary-color);
}
.btn-white {
 background: white;
 color: var(--primary-color);
}
.btn-white:hover {
 background: #f0f0f0;
 transform: translateY(-2px);
}

.stats-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
 text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
 font-size: 3.5rem;
 font-weight: 800;
 color: var(--primary-color);
 margin-bottom: 8px;
}
.stat-caption {
 font-size: 1.1rem;
 font-weight: 600;
 margin-bottom: 8px;
}
.stat-item p {
 color: var(--text-muted);
 font-size: 0.95rem;
}

.cards-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 width: 100%;
}
.card {
 background: var(--bg-white);
 border: 1px solid var(--border-color);
 border-radius: var(--radius);
 box-shadow: var(--shadow);
 transition: var(--transition);
 padding: 28px;
 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);
 margin: -28px -28px 24px -28px;
 width: calc(100% + 56px);
}
.card-title {
 font-size: 1.25rem;
 margin-bottom: 12px;
}
.card-text {
 color: var(--text-light);
 flex-grow: 1;
 margin-bottom: 20px;
}
.card-button {
 align-self: flex-start;
 color: var(--primary-color);
 font-weight: 600;
}
.card-button: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 { grid-column: 2; }
.media-object.reverse .media-copy { grid-column: 1; grid-row: 1; }
.media-visual img {
 border-radius: var(--radius);
 box-shadow: var(--shadow-lg);
 width: 100%;
}
.media-copy .section-title { font-size: clamp(1.5rem, 4vw, 2rem); }
.media-copy .section-label { text-align: left; }
.check-list {
 list-style: none;
 padding: 0;
 margin-top: 20px;
}
.check-list li {
 padding-left: 30px;
 position: relative;
 margin-bottom: 12px;
}
.check-list li::before {
 content: '';
 color: var(--primary-color);
 position: absolute;
 left: 0;
 font-weight: 700;
}
.media-copy .cta-buttons { margin-top: 32px; }

.timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
 position: relative;
 margin-top: 40px;
}
.timeline::before {
 content: '';
 position: absolute;
 top: 20px;
 left: 5%;
 right: 5%;
 height: 2px;
 background: var(--border-color);
 z-index: 1;
}
.timeline-step { position: relative; z-index: 2; padding-top: 40px; }
.timeline-number {
 width: 40px;
 height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--primary-color);
 color: white;
 border-radius: 50%;
 font-weight: 700;
 font-size: 1.2rem;
 position: absolute;
 top: 0;
 left: 0;
 border: 4px solid var(--bg-light);
}
.timeline-step h3 { margin-bottom: 10px; font-size: 1.2rem; }
.timeline-step p { color: var(--text-muted); }

.cta-section-bg {
 background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
 padding: 80px 0;
 border-radius: var(--radius);
 margin: 80px 24px;
}
.text-white h2, .text-white p { color: white; }
.text-white p { opacity: 0.9; }

.footer {
 background: var(--text-dark);
 color: #a0aec0;
 padding: 60px 0 30px;
 font-size: 0.9rem;
}
.footer a { color: #a0aec0; }
.footer a:hover { color: white; }
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 800;
 color: white;
 margin-bottom: 16px;
 display: block;
}
.footer-description { margin-bottom: 20px; line-height: 1.6; }
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item span:first-child { margin-top: 2px; }
.footer-divider { height: 1px; background: rgba(255, 255, 255, 0.1); margin: 30px 0; }
.footer-bottom { text-align: center; }
.footer-copyright { font-size: 0.85rem; }
.footer-disclaimer {
 font-size: 0.8rem;
 color: #718096;
 margin-top: 30px;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 20px;
}

#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--text-dark);
 color: white;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: var(--primary-color); }
#cookie-banner div { display: flex; gap: 10px; }
#cookie-banner button {
 padding: 8px 16px;
 border-radius: var(--radius);
 border: none;
 cursor: pointer;
}
#cookie-banner button:first-child { background: var(--primary-color); color: white; }
#cookie-banner button:last-child { background: var(--secondary-color); color: white; }

.page-header-section {
 padding: 120px 0 60px;
 background: var(--bg-light);
 text-align: center;
}
.page-header-section h1 { margin-bottom: 16px; }
.page-header-section p { max-width: 600px; margin: 0 auto; color: var(--text-light); }

.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.team-member {
 text-align: center;
}
.team-photo {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 16px;
 box-shadow: var(--shadow);
}
.team-member h3 { font-size: 1.2rem; }
.team-role { color: var(--text-muted); font-style: italic; }

.value-card {
 background: white;
 padding: 24px;
 border-radius: var(--radius);
 border: 1px solid var(--border-color);
 text-align: center;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--text-light); }

.faq-container {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 border-bottom: 1px solid var(--border-color);
}
.faq-question {
 width: 100%;
 background: none;
 border: none;
 padding: 20px 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 text-align: left;
}
.faq-icon {
 font-size: 1.5rem;
 font-weight: 300;
 transition: transform 0.3s;
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease-out;
}
.faq-answer p { padding: 0 0 20px; color: var(--text-light); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.contact-layout {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 48px;
}
.contact-form-wrapper h3, .contact-info-wrapper h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius);
 font-family: var(--font-main);
 font-size: 1rem;
 transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.contact-form 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; font-size: 0.9rem;}

.contact-info-item { margin-bottom: 24px; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.contact-info-item p { color: var(--text-light); line-height: 1.5; }
.map-container {
 height: 450px;
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: var(--shadow);
}
.legal-content h2 { margin: 40px 0 16px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-light); margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 20px; }

.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 30px 0;
 font-size: 0.9rem;
}
.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); font-weight: 600; }

.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;
}

.form-success {
 animation: fadeIn 0.3s ease;
}

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

.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); }
}

button[disabled], input[type="submit"][disabled] {
 opacity: 0.7;
 cursor: not-allowed;
}

@media (max-width: 992px) {
 .cards-grid { grid-template-columns: repeat(2, 1fr); }
 .timeline { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .hero-inner, .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-copy { grid-row: 2; }
 .hero-copy { text-align: center; }
 .hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-menu {
 position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 height: 100vh;
 background-color: var(--bg-white);
 box-shadow: -10px 0 30px rgba(0,0,0,0.1);
 padding: 100px 40px 40px;
 transition: right 0.4s ease-in-out;
 }
 .nav-menu.active { right: 0; }
 .nav-links { flex-direction: column; gap: 24px; }
 .nav-links a { font-size: 1.2rem; }
 #cookie-banner { flex-direction: column; text-align: center; }
 .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
 .stats-grid, .cards-grid, .timeline { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-brand { margin: 0 auto; }
}