:root {
 --primary-color: #374151; /* Elegant Charcoal */
 --secondary-color: #ca8a04; /* Gold */
 --accent-color: #fef3c7; /* Warm Beige */
 --primary-dark: #1f2937;
 --text-dark: #111827;
 --text-light: #6b7280;
 --bg-light: #fdfbf5;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 
 --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);

 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;

 --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.6;
 color: var(--text-dark);
 background-color: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

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

a:hover {
 color: #a16207;
}

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

.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-header.text-left {
 text-align: left;
 margin: 0 0 40px 0;
 max-width: 100%;
}

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

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

.section-subtitle {
 color: var(--text-light);
 font-size: 1.1rem;
}

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

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

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

.nav-links {
 display: flex;
 gap: 32px;
 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: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--secondary-color);
 transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
 color: var(--secondary-color);
}
.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);
}

/* Hero */
.hero {
 position: relative;
 min-height: 80vh;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white; 
 text-align: center;
}
.hero-short {
 position: relative;
 min-height: 40vh;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 text-align: center;
}
.hero::before, .hero-short::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(0, 0, 0, 0.5);
}

.hero-content {
 position: relative;
 z-index: 1;
}

.hero-title {
 color: white;
 margin-bottom: 20px;
}

.hero-subtitle {
 font-size: 1.25rem;
 max-width: 600px;
 margin: 0 auto 30px;
 opacity: 0.9;
}

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

/* Buttons */
.btn {
 display: inline-flex;
 padding: 14px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-decoration: none;
 text-align: center;
}
.btn-lg {
 padding: 16px 32px;
 font-size: 1.1rem;
}

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

.btn-primary:hover {
 background: #a16207;
 color: #fff;
 transform: translateY(-2px);
}

.btn-secondary {
 background: transparent;
 color: white;
 border-color: white;
}

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

/* Grids & Cards */
.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);
 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;
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}

.card-title {
 font-size: 1.25rem;
 margin-bottom: 12px;
}

.card-text {
 color: var(--text-light);
 flex-grow: 1;
 margin-bottom: 20px;
}

.card-button {
 display: inline-block;
 padding: 10px 20px;
 border: 2px solid var(--secondary-color);
 border-radius: var(--radius-md);
 color: var(--secondary-color);
 font-weight: 600;
 text-decoration: none;
 text-align: center;
 transition: var(--transition);
 align-self: flex-start;
}

.card-button:hover {
 background: var(--secondary-color);
 color: var(--primary-dark);
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 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: 400px;
 object-fit: cover;
}

.media-copy ul {
 list-style-position: inside;
 padding-left: 0;
 margin: 20px 0;
}
.media-copy ul li {
 margin-bottom: 10px;
 color: var(--text-light);
}

/* Testimonials */
.testimonial-card {
 background: var(--bg-light);
 border-radius: var(--radius-lg);
 padding: 30px;
 text-align: center;
 box-shadow: var(--shadow-md);
 border-left: 4px solid var(--secondary-color);
}
.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 3px solid var(--accent-color);
}
.testimonial-text {
 font-style: italic;
 color: var(--text-light);
 margin-bottom: 20px;
}
.testimonial-author strong {
 display: block;
 color: var(--primary-dark);
}
.testimonial-author span {
 font-size: 0.9rem;
 color: var(--text-light);
}

/* CTA Section */
.cta-section {
 padding: 60px 0;
}
.text-center { text-align: center; }

/* Checklist Card */
.checklist-card {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.checklist-card h3 {
 color: var(--secondary-color);
 margin-bottom: 20px;
}
.checklist-card ul {
 list-style-type: none;
}
.checklist-card ul li {
 padding-left: 25px;
 position: relative;
 margin-bottom: 10px;
}
.checklist-card ul li::before {
 content: '';
 color: var(--secondary-color);
 position: absolute;
 left: 0;
 font-weight: bold;
}

/* Feature Card */
.feature-card {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 text-align: center;
}
.feature-card h4 {
 margin-bottom: 15px;
 font-size: 1.2rem;
}
.feature-card p {
 color: var(--text-light);
}

/* Timeline */
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.timeline::after {
 content: '';
 position: absolute;
 width: 3px;
 background-color: var(--accent-color);
 top: 0;
 bottom: 0;
 left: 50%;
 margin-left: -1.5px;
}
.timeline-step {
 padding: 10px 40px;
 position: relative;
 background-color: inherit;
 width: 50%;
}
.timeline-step:nth-child(odd) {
 left: 0;
 text-align: right;
}
.timeline-step:nth-child(even) {
 left: 50%;
}
.timeline-step .timeline-number {
 position: absolute;
 width: 50px;
 height: 50px;
 line-height: 50px;
 font-size: 1.5rem;
 font-weight: bold;
 color: var(--primary-dark);
 background-color: var(--secondary-color);
 border-radius: 50%;
 z-index: 1;
 text-align: center;
}
.timeline-step:nth-child(odd) .timeline-number {
 right: -25px;
 top: 20px;
}
.timeline-step:nth-child(even) .timeline-number {
 left: -25px;
 top: 20px;
}
.timeline-content {
 padding: 20px 30px;
 background: white;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}

/* Team */
.team-card {
 text-align: center;
 background: white;
 padding: 20px;
 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 20px;
 border: 4px solid var(--accent-color);
}
.team-name {
 margin-bottom: 5px;
}
.team-title {
 color: var(--secondary-color);
 font-weight: 500;
 margin-bottom: 10px;
}
.team-bio {
 font-size: 0.9rem;
 color: var(--text-light);
}

/* Info Box */
.info-box {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.info-box h3 {
 margin-bottom: 15px;
 color: var(--secondary-color);
}
.info-box p {
 color: var(--text-light);
}

/* FAQ */
.faq-container {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 background: white;
 padding: 20px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
 margin-bottom: 20px;
}
.faq-question {
 font-size: 1.2rem;
 margin-bottom: 10px;
 cursor: pointer;
}
.faq-answer {
 color: var(--text-light);
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out;
}
.faq-item.active .faq-answer {
 max-height: 200px;
}

/* Contact page */
.contact-page-layout {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 50px;
}

.contact-form-container {
 background: white;
 padding: 40px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.form-group {
 margin-bottom: 20px;
}
.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 12px;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 font-family: inherit;
 font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--secondary-color);
 box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.2);
}
.checkbox-group {
 display: flex;
 align-items: center;
}
.checkbox-group input {
 width: auto;
 margin-right: 10px;
}
.checkbox-group label {
 margin-bottom: 0;
 font-size: 0.9rem;
}
.contact-info-container h3 {
 font-size: 1.75rem;
 margin-bottom: 20px;
}
.contact-details .contact-detail-item {
 margin-bottom: 20px;
}
.contact-details .contact-detail-item strong {
 display: block;
 color: var(--primary-dark);
}
.contact-details .contact-detail-item p {
 color: var(--text-light);
 margin: 0;
}
.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}
.map-container iframe {
 width: 100%;
 height: 100%;
 border: none;
}

/* Legal Pages */
.legal-page {
 padding: 100px 0 80px;
}
.legal-page h1 {
 margin-bottom: 1rem;
 text-align: center;
}
.legal-page p:first-of-type {
 text-align: center;
 color: var(--text-light);
 margin-bottom: 40px;
}
.legal-page section {
 margin-bottom: 30px;
}
.legal-page h2 {
 margin-bottom: 10px;
 padding-bottom: 5px;
 border-bottom: 2px solid var(--accent-color);
}
.legal-page ul {
 padding-left: 20px;
 margin: 10px 0;
}
.legal-page table {
 width: 100%;
 border-collapse: collapse;
 margin: 20px 0;
}
.legal-page th, .legal-page td {
 border: 1px solid var(--border-color);
 padding: 8px 12px;
 text-align: left;
}
.legal-page th {
 background-color: var(--bg-light);
}

/* Footer */
.footer {
 background: var(--primary-color);
 color: #e5e7eb;
 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;
 color: #d1d5db;
}

.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
}

.footer-links ul {
 list-style: none;
}

.footer-links li {
 margin-bottom: 12px;
}

.footer-links a, .footer-contact-item a {
 color: #d1d5db;
}

.footer-links a:hover, .footer-contact-item a:hover {
 color: white;
}

.footer-contact address, .footer-hours p {
 color: #d1d5db;
 font-style: normal;
 font-size: 0.9rem;
}

.footer-contact-item {
 margin-bottom: 12px;
}

.footer-bottom {
 border-top: 1px solid #4b5563;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.85rem;
 color: #9ca3af;
}

.footer-legal-links a {
 color: #9ca3af;
 margin-left: 20px;
}
.footer-legal-links a:hover {
 color: white;
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--primary-dark);
 color: white;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 z-index: 1001;
 gap: 20px;
}
#cookie-banner p {
 margin: 0;
}
#cookie-banner a {
 color: var(--secondary-color);
 text-decoration: underline;
}
#cookie-banner div {
 display: flex;
 gap: 10px;
}
#cookie-banner button {
 padding: 8px 16px;
 border: none;
 border-radius: var(--radius-md);
 cursor: pointer;
}
#accept-cookies {
 background: var(--secondary-color);
 color: var(--primary-dark);
}
#decline-cookies {
 background: #4b5563;
 color: white;
}

/* Form Validation Styles */
.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;
}

@keyframes fadeIn {
 from { opacity: 0; transform: translateY(-5px); }
 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;
}
.btn-primary .spinner {
 border-top-color: var(--primary-dark);
}

@keyframes spin {
 to { transform: rotate(360deg); }
}

button[disabled] {
 opacity: 0.7;
 cursor: not-allowed;
}

/* Responsive */
@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 1; }
 .contact-page-layout { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
 .timeline::after { left: 25px; }
 .timeline-step { width: 100%; padding-left: 70px; padding-right: 20px; }
 .timeline-step:nth-child(odd), .timeline-step:nth-child(even) { left: 0; text-align: left; }
 .timeline-step .timeline-number, 
 .timeline-step:nth-child(odd) .timeline-number, 
 .timeline-step:nth-child(even) .timeline-number {
 left: 0; 
 }
}

@media (max-width: 768px) {
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 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);
 }
 .hero-title { font-size: 2.2rem; }
 .hero-subtitle { font-size: 1.1rem; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 15px; }
 #cookie-banner { flex-direction: column; text-align: center; }
}