:root {
 --primary-color: #2563eb;
 --primary-dark: #1d4ed8;
 --secondary-color: #93c5fd;
 --text-dark: #1f2937;
 --text-light: #6b7280;
 --bg-light: #f3f4f6;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --hero-overlay: rgba(17, 24, 39, 0.6);

 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
 --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, Arial, sans-serif;
}

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

html {
 scroll-behavior: smooth;
 -webkit-font-smoothing: antialiased;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.6;
 color: var(--text-dark);
 background-color: var(--bg-white);
}

img, picture, video, canvas, svg {
 display: block;
 max-width: 100%;
}

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.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }

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 li {
 margin-bottom: 0.5rem;
}

.container {
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 1.5rem;
 padding-right: 1.5rem;
}

.text-center {
 text-align: center;
}

/* 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(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}

.header.scrolled {
 box-shadow: var(--shadow-md);
}

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

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

.nav-links {
 display: flex;
 align-items: center;
 list-style: none;
 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;
 right: 0;
 height: 2px;
 background-color: var(--primary-color);
 transform: scaleX(0);
 transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
 transform: scaleX(1);
}

.nav-toggle {
 display: none;
 cursor: pointer;
 background: transparent;
 border: none;
}

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

@media (max-width: 768px) {
 .nav-toggle {
 display: block;
 z-index: 1001;
 }
 .nav-menu {
 position: fixed;
 top: 0;
 right: -100%;
 width: 100%;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 display: flex;
 transition: right 0.3s ease-in-out;
 }
 .nav-menu.active {
 right: 0;
 }
 .nav-links {
 flex-direction: column;
 gap: 2rem;
 }
 .nav-links a {
 font-size: 1.5rem;
 }
}

/* Sections */
.section {
 padding: 80px 0;
}

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

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

.section-label {
 display: inline-block;
 background-color: var(--secondary-color);
 color: var(--primary-dark);
 padding: 6px 16px;
 border-radius: 20px;
 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); }

/* Hero */
.hero {
 position: relative;
 min-height: 60vh;
 display: flex;
 align-items: center;
 background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url(assets/img-26a51acd.jpg);
 background-size: cover;
 background-position: center;
 color: var(--bg-white);
 text-align: center;
 padding: 80px 0;
}

.hero-content { z-index: 1; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.25rem; max-width: 700px; margin: 0 auto 2rem; color: #e5e7eb; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
 display: inline-block;
 padding: 14px 28px;
 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: white;
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

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

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

/* Grids */
.grid-2 { display: grid; gap: 30px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 30px; grid-template-columns: 1fr; }

@media (min-width: 768px) {
 .grid-2 { grid-template-columns: repeat(2, 1fr); }
 .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Cards */
.card {
 background-color: 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: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.card-title {
 font-size: 1.25rem;
 margin-bottom: 0.75rem;
}
.card-text {
 color: var(--text-light);
 flex-grow: 1;
}
.read-more {
 display: inline-block;
 margin-top: 1rem;
 font-weight: 600;
 color: var(--primary-color);
 align-self: flex-start;
}

/* Media Object */
.media-object {
 display: grid;
 gap: 40px;
 align-items: center;
}
@media (min-width: 768px) {
 .media-object { grid-template-columns: 1fr 1fr; }
 .media-object.reversed .media-visual { order: -1; }
}

.media-copy .section-label, .media-copy h2 { text-align: left; }
.media-copy ul { list-style: none; padding-left: 0; }
.media-copy ul li {
 position: relative;
 padding-left: 25px;
 margin-bottom: 1rem;
}
.media-copy ul li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: 700;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-height: 400px;
 width: 100%;
 object-fit: cover;
}

/* Timeline */
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.timeline::after {
 content: '';
 position: absolute;
 width: 4px;
 background-color: var(--border-color);
 top: 0;
 bottom: 0;
 left: 50%;
 margin-left: -2px;
}
.timeline-step {
 padding: 10px 40px;
 position: relative;
 background-color: inherit;
 width: 50%;
}
.timeline-step:nth-child(odd) { left: 0; }
.timeline-step:nth-child(even) { left: 50%; }
.timeline-step::after {
 content: '';
 position: absolute;
 width: 25px;
 height: 25px;
 right: -14px;
 background-color: white;
 border: 4px solid var(--primary-color);
 top: 25px;
 border-radius: 50%;
 z-index: 1;
}
.timeline-step:nth-child(even)::after { left: -14px; }
.timeline-step .timeline-content {
 padding: 20px 30px;
 background-color: white;
 position: relative;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
 .timeline::after { left: 31px; }
 .timeline-step { width: 100%; padding-left: 70px; padding-right: 25px; }
 .timeline-step:nth-child(odd), .timeline-step:nth-child(even) { left: 0; }
 .timeline-step::after { left: 18px; }
}

/* CTA Section */
.cta-section {
 background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
 color: white;
 padding: 60px 0;
}
.cta-section .section-header { margin-bottom: 0; }

/* Page Header Section */
.page-header-section {
 padding: 120px 0 60px;
 background-color: var(--bg-light);
 text-align: center;
}
.page-header-section h1 { font-size: 2.8rem; }
.page-header-section p { font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

/* Team Cards */
.team-card {
 text-align: center;
 background-color: var(--bg-white);
 padding: 2rem;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 4px solid var(--bg-white);
 box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.team-name { font-size: 1.25rem; margin-bottom: 0.25rem; }
.team-title { color: var(--primary-color); font-weight: 500; }

/* Feature Cards */
.feature-card {
 background-color: var(--bg-white);
 padding: 2rem;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
 border-left: 4px solid var(--primary-color);
}
.feature-card h3 { font-size: 1.25rem; }

/* Contact Page */
.contact-grid {
 display: grid;
 gap: 40px;
}
@media (min-width: 992px) {
 .contact-grid { grid-template-columns: 2fr 1fr; }
}
.form-grid {
 display: grid;
 gap: 20px;
}
@media (min-width: 768px) {
 .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-group {
 grid-column: span 1;
}
.form-group.full-width {
 grid-column: 1 / -1;
}
.form-label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.form-control {
 width: 100%;
 padding: 14px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-family: var(--font-main);
 transition: var(--transition);
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.contact-info-wrapper {
 background-color: var(--bg-light);
 padding: 2rem;
 border-radius: var(--radius-md);
}
.contact-info-item { margin-bottom: 1.5rem; }
.contact-info-item p { margin: 0; }
.map-section { padding-top: 0; }
.map-container {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 line-height: 0;
}

/* Legal Pages */
.legal-page { padding: 120px 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.legal-page p:first-of-type { text-align: center; color: var(--text-light); margin-bottom: 3rem; }
.legal-page section { margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); }
.legal-page ul { padding-left: 20px; }
.legal-page table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.legal-page th, .legal-page td { padding: 12px; border: 1px solid var(--border-color); text-align: left;}
.legal-page th { background-color: var(--bg-light); }

/* Footer */
.footer {
 background-color: var(--text-dark);
 color: #a0aec0;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 gap: 40px;
 margin-bottom: 40px;
}
@media (min-width: 576px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1.5fr; } }
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 display: block;
 margin-bottom: 1rem;
}
.footer-logo:hover { color: var(--secondary-color); }
.footer-description {
 font-size: 0.9rem;
 max-width: 280px;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 1.5rem;
}
.footer-links {
 list-style: none;
 padding: 0;
}
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: #a0aec0; }
.footer-links a:hover { color: white; }
.footer-contact-item { line-height: 1.5; }
.footer-contact-item a { color: #a0aec0; }
.footer-contact-item a:hover { color: white; }
.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: 1rem;
}
.footer-copyright {
 font-size: 0.85rem;
 margin: 0;
}
.footer-legal-links {
 display: flex;
 gap: 1.5rem;
}
.footer-legal-links a {
 font-size: 0.85rem;
 color: #a0aec0;
}
.footer-legal-links a:hover {
 color: white;
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: #2d3748;
 color: white;
 padding: 1rem;
 display: none;
 justify-content: space-between;
 align-items: center;
 gap: 1rem;
 z-index: 1001;
 flex-wrap: wrap;
}
#cookie-banner p {
 margin: 0;
 font-size: 0.9rem;
}
#cookie-banner a {
 color: var(--secondary-color);
 text-decoration: underline;
}
.cookie-buttons {
 display: flex;
 gap: 0.5rem;
}
#cookie-banner button {
 padding: 8px 16px;
 border-radius: var(--radius-md);
 border: none;
 cursor: pointer;
 font-weight: 500;
}
#cookie-banner button:first-of-type {
 background-color: var(--primary-color);
 color: white;
}
#cookie-banner button:last-of-type {
 background-color: #4a5568;
 color: white;
}