@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');

: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-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;

 --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);
 
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
 --font-display: 'Playfair Display', serif;
}

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

html {
 scroll-behavior: smooth;
 scroll-padding-top: 80px;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 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;
}
.container-sm {
 max-width: 800px;
}
.section {
 padding: 80px 0;
}
.section.pt-0 {
 padding-top: 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;
 color: var(--primary-color);
 font-weight: 600;
 font-family: var(--font-main);
 font-size: 0.9rem;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0;
 height: 2px;
 background: 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: 1001;
}

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

.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: 2px 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);
}
.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-color: var(--bg-white);
 color: var(--primary-color);
 border-color: var(--bg-white);
}
.btn-white:hover {
 background-color: var(--bg-light);
 color: var(--primary-dark);
}

.hero {
 min-height: 85vh;
 position: relative;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 text-align: center;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(0,0,0,0.4);
}
.hero-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
}
.hero-title {
 color: white;
 margin-bottom: 24px;
}
.hero-subtitle {
 font-size: 1.25rem;
 line-height: 1.6;
 margin-bottom: 32px;
 color: rgba(255, 255, 255, 0.9);
}
.hero .section-label {
 background-color: rgba(255,255,255,0.2);
 color: white;
 padding: 8px 16px;
 border-radius: var(--radius-sm);
}

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

.card {
 background: var(--bg-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;
}
.card-text {
 flex-grow: 1;
 margin-bottom: 24px;
}
.card-meta {
 font-size: 0.85rem;
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 8px;
 font-family: var(--font-main);
 text-transform: uppercase;
}
.card-button {
 align-self: flex-start;
 padding: 10px 20px;
 border: 2px solid var(--border-color);
 border-radius: var(--radius-md);
 color: var(--text-dark);
 font-weight: 600;
}
.card-button:hover {
 background: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}

.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 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);
 width: 100%;
 height: auto;
 max-height: 500px;
 object-fit: cover;
}
.media-copy .section-title, .media-copy .section-label {
 text-align: left;
 margin-left: 0;
 margin-right: 0;
}
.media-copy .section-subtitle {
 margin-left: 0;
 margin-right: 0;
}
.media-copy .btn {
 margin-top: 24px;
}

.icon-list, .checklist {
 list-style: none;
 margin-top: 24px;
}
.icon-list li, .checklist li {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin-bottom: 12px;
}
.icon-list svg, .checklist svg {
 width: 20px;
 height: 20px;
 color: var(--primary-color);
 flex-shrink: 0;
 margin-top: 3px;
}

.testimonial-card {
 background: var(--bg-light);
 padding: 32px;
 border-radius: var(--radius-lg);
 border-left: 4px solid var(--primary-color);
}
.testimonial-rating {
 font-size: 1.25rem;
 color: var(--primary-color);
 margin-bottom: 12px;
}
.testimonial-author {
 display: flex;
 align-items: center;
 gap: 16px;
 margin-top: 24px;
}
.avatar {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 object-fit: cover;
}
.testimonial-name {
 display: block;
 font-weight: 700;
 color: var(--text-dark);
}
.testimonial-meta {
 font-size: 0.9rem;
 color: var(--text-muted);
}

.newsletter-section {
 background-color: var(--primary-color);
 color: white;
 padding: 60px 0;
 text-align: center;
}
.newsletter-section .section-title, .newsletter-section .section-subtitle {
 color: white;
}
.newsletter-form {
 display: flex;
 gap: 12px;
 max-width: 500px;
 margin: 24px auto 0;
 justify-content: center;
}
.newsletter-form input {
 flex-grow: 1;
 padding: 14px 20px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
}
.newsletter-form .btn {
 flex-shrink: 0;
}

.footer {
 background: var(--text-dark);
 color: #a0aec0;
 padding: 80px 0 30px;
 font-size: 0.9rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer a {
 color: #a0aec0;
}
.footer a:hover {
 color: white;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 16px;
 display: block;
 font-family: var(--font-display);
}
.footer-description {
 line-height: 1.6;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 font-family: var(--font-main);
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 12px;
}
.footer-social {
 display: flex;
 gap: 12px;
 margin-top: 20px;
}
.footer-social a {
 width: 40px;
 height: 40px;
 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-contact-item {
 display: flex;
 gap: 12px;
 margin-bottom: 16px;
 align-items: flex-start;
}
.footer-contact-item svg {
 width: 18px;
 height: 18px;
 flex-shrink: 0;
 margin-top: 3px;
 color: var(--primary-color);
}
.footer-divider {
 height: 1px;
 background: rgba(255,255,255,0.1);
 margin: 40px 0;
}
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.85rem;
 color: #718096;
}
.footer-legal-links {
 display: flex;
 gap: 24px;
}

#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;
 box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
#cookie-banner p {
 margin: 0;
}
#cookie-banner a {
 color: var(--primary-color);
 text-decoration: underline;
}
#cookie-banner div {
 display: flex;
 gap: 12px;
 flex-shrink: 0;
}

.page-header-section {
 padding: 120px 0 60px;
 text-align: center;
 background-color: var(--bg-light);
}
.page-title { margin-bottom: 16px; }
.page-subtitle {
 font-size: 1.2rem;
 color: var(--text-light);
 max-width: 650px;
 margin: 0 auto;
}

.team-card {
 text-align: center;
 background-color: var(--bg-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;
 object-fit: cover;
 border: 4px solid white;
 box-shadow: var(--shadow-lg);
}
.team-name {
 margin-bottom: 4px;
}
.team-title {
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 12px;
}

.value-card {
 background-color: var(--bg-light);
 padding: 24px;
 border-radius: var(--radius-lg);
 text-align: center;
}
.value-icon {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 background-color: var(--primary-color);
 color: white;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 {
 font-family: var(--font-main);
 font-size: 1.1rem;
 margin-bottom: 8px;
}

.faq-container {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 border-bottom: 1px solid var(--border-color);
 padding: 20px 0;
}
.faq-question {
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 list-style: none;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.faq-question::-webkit-details-marker {
 display: none;
}
.faq-question::after {
 content: '+';
 font-size: 1.5rem;
 font-weight: 400;
 transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
 transform: rotate(45deg);
}
.faq-answer {
 padding-top: 16px;
 line-height: 1.7;
}

.contact-page-layout {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 60px;
}
.contact-form-container, .contact-details-container {
 max-width: 100%;
}
.contact-form .form-group {
 margin-bottom: 20px;
}
.form-label {
 display: block;
 font-weight: 500;
 margin-bottom: 8px;
 color: var(--text-dark);
}
.form-control {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: var(--bg-light);
 font-family: inherit;
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
textarea.form-control {
 resize: vertical;
 min-height: 120px;
}
.contact-info-item {
 display: flex;
 gap: 20px;
 margin-bottom: 24px;
}
.contact-info-icon {
 flex-shrink: 0;
 background-color: var(--primary-color);
 color: white;
 width: 44px;
 height: 44px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-item h4 {
 margin-bottom: 4px;
 font-family: var(--font-main);
 font-size: 1rem;
}
.contact-info-item p, .contact-info-item a {
 color: var(--text-light);
 line-height: 1.5;
}
.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}

.legal-page {
 padding: 120px 0 80px;
}
.legal-page h1 { margin-bottom: 1rem; }
.legal-page h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.75rem; }
.legal-page p, .legal-page li { line-height: 1.8; margin-bottom: 1rem; }
.legal-page ul { padding-left: 20px; }
.cookie-table {
 width: 100%;
 margin-top: 2rem;
 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);
 font-weight: 600;
}
.fade-in {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
 opacity: 1;
 transform: translateY(0);
}

@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 0; }
 .media-visual { margin-bottom: 30px; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 80%;
 max-width: 320px;
 height: 100vh;
 background: white;
 flex-direction: column;
 padding: 120px 40px 40px;
 gap: 24px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: right 0.4s ease-in-out;
 }
 .nav-links.active {
 right: 0;
 }
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .contact-page-layout { grid-template-columns: 1fr; gap: 40px; }
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 #cookie-banner { flex-direction: column; text-align: center; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 16px; }
}