:root {
  --color-deep-blue: #0A1628;
  --color-midnight: #1A2B47;
  --color-slate: #2D3E5F;
  --color-ocean: #3B5998;
  --color-bright-blue: #4A90E2;
  --color-sky: #7FB3FF;
  --color-light-blue: #E8F2FF;
  --color-cream: #F8FAFB;
  --color-white: #FFFFFF;
  --color-accent-coral: #FF6B6B;
  --color-accent-teal: #26C6DA;
  --color-success: #4CAF50;
  --color-text-primary: #1A2B47;
  --color-text-secondary: #5A6C84;
  --color-text-light: #8B9BB3;
  
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.04), 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08), 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.12), 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.16), 0 8px 24px rgba(10, 22, 40, 0.1);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text-primary);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-deep-blue);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.notification-banner {
  background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-bright-blue) 100%);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.15);
}

.notification-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.notification-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.notification-text i {
  font-size: 1.25rem;
  opacity: 0.9;
}

.notification-text p {
  color: var(--color-white);
  font-size: 0.9375rem;
  margin: 0;
  font-weight: 500;
}

.notification-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-deep-blue);
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-svg {
  width: 42px;
  height: 42px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-bright-blue);
  transition: width 0.3s ease;
}

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

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

.nav-links a.active {
  color: var(--color-bright-blue);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-light-blue);
  border-radius: var(--radius-sm);
}

.lang-btn {
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.lang-btn:hover {
  color: var(--color-bright-blue);
  background: rgba(74, 144, 226, 0.1);
}

.lang-btn.active {
  color: var(--color-bright-blue);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.lang-divider {
  color: var(--color-text-light);
  font-weight: 300;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-deep-blue);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--color-bright-blue);
}

.hero {
  position: relative;
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-midnight) 50%, var(--color-slate) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(38, 198, 218, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-text .subtitle {
  color: var(--color-sky);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 1rem;
}

.hero-feature i {
  color: var(--color-accent-teal);
  font-size: 1.25rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-bright-blue);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent-coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-image-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: all 0.5s ease;
}

.hero-image-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.2);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

section {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-light-blue);
  color: var(--color-bright-blue);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}

.benefits-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-bright-blue), var(--color-accent-teal));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-bright-blue), var(--color-accent-teal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

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

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

.benefit-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.how-it-works {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-light-blue) 100%);
}

.steps-grid {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  transition: all 0.4s ease;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  left: 4rem;
  width: 2px;
  height: 3rem;
  background: linear-gradient(180deg, var(--color-bright-blue), transparent);
}

.step-card:last-child::after {
  display: none;
}

.step-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-bright-blue), var(--color-ocean));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.step-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.locations-section {
  background: var(--color-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.location-card {
  background: linear-gradient(135deg, var(--color-deep-blue), var(--color-midnight));
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

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

.location-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.location-icon i {
  font-size: 2rem;
  color: var(--color-accent-teal);
}

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

.location-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-bright-blue) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-white);
  color: var(--color-bright-blue);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

footer {
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  position: relative;
}

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

.footer-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

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

.footer-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
  color: var(--color-accent-teal);
  margin-top: 0.25rem;
  font-size: 1.125rem;
}

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

.legal-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--color-accent-teal);
}

.content-page {
  padding: var(--spacing-xl) 0;
  background: var(--color-white);
}

.content-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-deep-blue), var(--color-midnight));
  border-radius: var(--radius-xl);
  color: var(--color-white);
}

.content-header h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.content-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.content-body {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.content-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-light-blue);
}

.content-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-ocean);
}

.content-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.content-body li {
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.content-body strong {
  color: var(--color-deep-blue);
  font-weight: 600;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.philosophy-card {
  background: linear-gradient(135deg, var(--color-light-blue), var(--color-white));
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 144, 226, 0.1);
}

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

.philosophy-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-bright-blue), var(--color-accent-teal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

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

.philosophy-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.programs-grid {
  display: grid;
  gap: 3rem;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

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

.program-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-bright-blue);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.program-content {
  padding: 2.5rem;
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.program-header h3 {
  flex: 1;
  font-size: 1.75rem;
}

.program-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-light-blue);
  color: var(--color-bright-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.program-content p {
  margin-bottom: 1.5rem;
}

.program-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.program-feature {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.program-feature i {
  color: var(--color-success);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.program-feature span {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-section {
  background: var(--color-white);
}

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

.contact-info {
  background: linear-gradient(135deg, var(--color-deep-blue), var(--color-midnight));
  padding: 3rem;
  border-radius: var(--radius-xl);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.contact-info h2 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.contact-detail-content h4 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-detail-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-light-blue);
  border-radius: var(--radius-md);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-bright-blue);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.privacy-checkbox {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.privacy-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  cursor: pointer;
  flex-shrink: 0;
}

.privacy-checkbox label {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  cursor: pointer;
}

.privacy-checkbox a {
  color: var(--color-bright-blue);
  text-decoration: underline;
}

.privacy-checkbox a:hover {
  color: var(--color-ocean);
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--color-bright-blue), var(--color-ocean));
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.0625rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.map-container {
  margin-top: 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

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

.thanks-content {
  text-align: center;
  max-width: 600px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--color-success), #45A049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-md);
}

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

.thanks-content h1 {
  margin-bottom: 1rem;
}

.thanks-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 24px rgba(10, 22, 40, 0.15);
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1280px;
  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 {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

.cookie-text a {
  color: var(--color-bright-blue);
  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-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--color-bright-blue);
  color: var(--color-white);
}

.cookie-accept:hover {
  background: var(--color-ocean);
}

.cookie-decline {
  background: var(--color-light-blue);
  color: var(--color-bright-blue);
}

.cookie-decline:hover {
  background: rgba(74, 144, 226, 0.2);
}

.cookie-customize {
  background: transparent;
  color: var(--color-text-secondary);
  border: 2px solid var(--color-light-blue);
}

.cookie-customize:hover {
  border-color: var(--color-bright-blue);
  color: var(--color-bright-blue);
}

.cookie-settings {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1001;
}

.cookie-settings.show {
  display: block;
}

.cookie-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.6);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.cookie-overlay.show {
  display: block;
}

.cookie-settings h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.cookie-category {
  padding: 1.5rem;
  background: var(--color-light-blue);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

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

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-text-light);
  border-radius: 24px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

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

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

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

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

.cookie-settings-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-settings-buttons button {
  flex: 1;
}

.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 (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -4px 0 24px rgba(10, 22, 40, 0.15);
    padding: 2rem;
    transition: right 0.4s ease;
    z-index: 100;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }
  
  .nav-links li {
    border-bottom: 1px solid var(--color-light-blue);
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 0;
  }
  
  .lang-switcher {
    margin-top: 2rem;
    justify-content: center;
  }
  
  .notification-content {
    flex-direction: column;
    text-align: center;
  }
  
  .notification-text {
    flex-direction: column;
  }
  
  .hero {
    padding: var(--spacing-xl) 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%;
    justify-content: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .step-card::after {
    left: 2rem;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .content-body {
    padding: 2rem 1.5rem;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .program-header {
    flex-direction: column;
  }
  
  .program-duration {
    align-self: flex-start;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-settings {
    padding: 2rem 1.5rem;
  }
  
  .cookie-settings-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 1rem 1.5rem;
  }
  
  .logo-link {
    font-size: 1.25rem;
  }
  
  .logo-svg {
    width: 36px;
    height: 36px;
  }
  
  .hero-features {
    font-size: 0.9375rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .benefit-card,
  .location-card {
    padding: 1.5rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  
  .program-content {
    padding: 2rem 1.5rem;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .map-container {
    height: 300px;
  }
}