:root {
  --primary: #2C5F7A;
  --primary-dark: #1E4258;
  --secondary: #E8915B;
  --accent: #F4C261;
  --neutral-100: #F8F9FA;
  --neutral-200: #E9ECEF;
  --neutral-300: #DEE2E6;
  --neutral-700: #495057;
  --neutral-800: #343A40;
  --neutral-900: #212529;
  --text: #2D3436;
  --text-light: #636E72;
  --white: #FFFFFF;
  --bg-cream: #FBF8F3;
  
  --shadow-sm: 0 1px 2px rgba(44, 95, 122, 0.04), 0 2px 4px rgba(44, 95, 122, 0.06);
  --shadow-md: 0 4px 6px rgba(44, 95, 122, 0.07), 0 8px 16px rgba(44, 95, 122, 0.1);
  --shadow-lg: 0 10px 20px rgba(44, 95, 122, 0.1), 0 20px 40px rgba(44, 95, 122, 0.15);
  --shadow-xl: 0 20px 40px rgba(44, 95, 122, 0.12), 0 40px 80px rgba(44, 95, 122, 0.18);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(3rem, 6vw, 5rem);
  --space-xl: clamp(5rem, 10vw, 8rem);
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3vw + 0.5rem, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

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

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

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container-narrow {
  max-width: 900px;
}

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

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--neutral-700);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--neutral-300);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--neutral-700);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--neutral-100);
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--white);
}

.lang-divider {
  color: var(--neutral-300);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.hero {
  margin-top: 80px;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--neutral-100) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-right: 2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.hero-image:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.hero-image:first-child {
  grid-column: 1 / 2;
  margin-top: 3rem;
}

.hero-image:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.hero-image:last-child {
  grid-column: 1 / 2;
  margin-bottom: 3rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-cutout {
  position: relative;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  background: var(--bg-cream);
  padding: calc(var(--space-xl) + 3rem) 0;
  margin: var(--space-lg) 0;
}

.section-cutout-reverse {
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
  background: linear-gradient(135deg, var(--neutral-100) 0%, var(--bg-cream) 100%);
}

.section-cutout-circle {
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.section-cutout-circle::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: var(--bg-cream);
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
}

.section-cutout-circle::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: 15%;
  width: 250px;
  height: 250px;
  background: var(--bg-cream);
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
}

.section-header {
  max-width: 800px;
  margin-bottom: var(--space-lg);
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offset-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: start;
}

.offset-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.offset-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.offset-item:nth-child(1) {
  grid-column: 1 / 7;
  margin-top: 3rem;
}

.offset-item:nth-child(2) {
  grid-column: 7 / 13;
}

.offset-item:nth-child(3) {
  grid-column: 1 / 7;
}

.offset-item:nth-child(4) {
  grid-column: 7 / 13;
  margin-top: 3rem;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.icon-wrapper i {
  font-size: 2rem;
  color: var(--white);
}

.offset-item h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.offset-item p {
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--space-md);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.two-column-image {
  position: relative;
}

.two-column-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

.two-column-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.checklist {
  list-style: none;
  margin-top: 1.5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.checklist li:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
}

.checklist i {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: var(--space-md);
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-xl);
}

.process-step h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.location-section {
  background: var(--bg-cream);
  padding: var(--space-xl) 0;
  position: relative;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  margin-top: var(--space-lg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-info {
  padding-right: 2rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.location-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.location-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.location-text h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
}

.location-text p,
.location-text a {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--neutral-900);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.certifications {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.certifications::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.certifications .section-header {
  position: relative;
  z-index: 1;
}

.certifications h2,
.certifications .section-subtitle {
  color: var(--white);
}

.certifications .section-subtitle {
  color: var(--accent);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.cert-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.cert-badge {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.cert-badge i {
  font-size: 2rem;
  color: var(--primary);
}

.cert-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.cert-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: var(--space-md);
}

.calendar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.calendar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.calendar-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.calendar-date {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.calendar-month {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-body {
  padding: 2rem;
}

.calendar-body h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.calendar-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
}

.calendar-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.calendar-meta-item i {
  color: var(--secondary);
  width: 20px;
}

.form-section {
  background: var(--bg-cream);
  padding: var(--space-xl) 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.75rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(44, 95, 122, 0.1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.iti, #phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.125rem;
}

.thanks-content {
  text-align: center;
  padding: var(--space-xl) 0;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
}

.thanks-icon i {
  font-size: 3rem;
  color: var(--white);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.legal-date {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

footer {
  background: var(--neutral-900);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-lg) 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: var(--neutral-200);
  color: var(--neutral-800);
}

.cookie-btn-decline:hover {
  background: var(--neutral-300);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category h4 {
  margin: 0;
  font-size: 1.125rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--neutral-300);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-slider {
  background: var(--primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-modal-buttons .cookie-btn {
  flex: 1;
}

@media (max-width: 1024px) {
  .hero-content,
  .two-column,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-images {
    order: -1;
  }
  
  .offset-item:nth-child(1),
  .offset-item:nth-child(2),
  .offset-item:nth-child(3),
  .offset-item:nth-child(4) {
    grid-column: 1 / -1;
    margin-top: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .location-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
  }
  
  .lang-switcher {
    border-left: none;
    border-top: 1px solid var(--neutral-300);
    padding-left: 0;
    padding-top: 1rem;
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1000;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero {
    margin-top: 70px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-images {
    grid-template-columns: 1fr;
  }
  
  .hero-image:first-child,
  .hero-image:nth-child(2),
  .hero-image:last-child {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }
  
  .features-grid,
  .process-steps,
  .cert-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .section-cutout,
  .section-cutout-reverse {
    clip-path: none;
    padding: var(--space-xl) 0;
  }
  
  .location-section {
    clip-path: none;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .offset-item,
  .feature-card,
  .cert-card {
    padding: 1.75rem;
  }
  
  .form-wrapper {
    padding: 1.5rem;
  }
  
  .calendar-header {
    padding: 1.5rem;
  }
  
  .calendar-body {
    padding: 1.5rem;
  }
  
  .cookie-modal-content {
    padding: 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}