@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Work+Sans:ital,wght@0,300..700;1,300..700&display=swap');

:root {
  --color-gold: #E9C46A;
  --color-orange: #F4A261;
  --color-dark-teal: #264653;
  --color-coral: #E76F51;
  --color-teal: #2A9D8F;
  --color-white: #FDFCFA;
  --color-cream: #FAF8F5;
  --color-light-gray: #F0EDE8;
  --color-text: #1A1A1A;
  --color-text-light: #5A5A5A;
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  --shadow-sm: 0 1px 2px rgba(38, 70, 83, 0.08);
  --shadow-md: 0 4px 12px rgba(38, 70, 83, 0.1);
  --shadow-lg: 0 8px 24px rgba(38, 70, 83, 0.12);
  --shadow-xl: 0 16px 48px rgba(38, 70, 83, 0.15);
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --max-width: 72rem;
}

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

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

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

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header {
  position: relative;
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-gray) 100%);
  border-bottom: 1px solid rgba(38, 70, 83, 0.08);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark-teal);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-accent {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-orange) 50%, var(--color-gold) 100%);
  border-radius: var(--radius-sm);
  transform: rotate(-5deg);
}

.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-coral);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-dark-teal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.burger {
  width: 2rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 200;
}

.burger-line {
  width: 1.4rem;
  height: 2px;
  background: var(--color-dark-teal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 20rem;
  height: 100vh;
  background: var(--color-white);
  padding: var(--space-3xl) var(--space-xl);
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-slow);
  z-index: 150;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark-teal);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 160;
  box-shadow: var(--shadow-md);
}

.nav-mobile-close:hover {
  background: var(--color-coral);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.nav-mobile-close:active {
  transform: scale(0.95);
}

.nav-mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-dark-teal);
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-light-gray);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.nav-mobile-link:hover {
  color: var(--color-coral);
  padding-left: var(--space-sm);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 70, 83, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 140;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-light-gray) 0%, var(--color-cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(233, 196, 106, 0.15) 0%, rgba(244, 162, 97, 0.1) 50%, rgba(231, 111, 81, 0.05) 100%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-teal);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-title span {
  color: var(--color-coral);
}

.hero-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

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

.btn-secondary {
  background: var(--color-white);
  color: var(--color-dark-teal);
  border: 1px solid var(--color-dark-teal);
}

.btn-secondary:hover {
  background: var(--color-dark-teal);
  color: var(--color-white);
}

.btn-ghost {
  color: var(--color-dark-teal);
  padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
  color: var(--color-coral);
}

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

.section-header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-white);
  font-size: 1.3rem;
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.feature-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.slider-section {
  background: var(--color-dark-teal);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.slider-section .section-label {
  color: var(--color-gold);
}

.slider-section .section-title {
  color: var(--color-white);
}

.slider-section .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.slider-wrapper {
  position: relative;
  margin-top: var(--space-xl);
}

.slider {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-md) 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 calc(100% - var(--space-xl));
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.slide-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.slide-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-orange) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.slide-info {
  font-size: 0.85rem;
}

.slide-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.slide-role {
  color: rgba(255, 255, 255, 0.6);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  width: 1.5rem;
  background: var(--color-gold);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: var(--space-lg);
}

.course-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.course-image {
  height: 10rem;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.course-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.course-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-coral);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.course-content {
  padding: var(--space-lg);
}

.course-level {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
}

.course-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.course-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-light-gray);
}

.course-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark-teal);
}

.course-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-coral);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.course-link:hover {
  color: var(--color-dark-teal);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-gray) 50%, var(--color-cream) 100%);
  text-align: center;
}

.cta-content {
  max-width: 32rem;
  margin: 0 auto;
}

.cta-title {
  margin-bottom: var(--space-md);
}

.cta-text {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

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

.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light-gray);
  border-radius: var(--radius-md);
  color: var(--color-dark-teal);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--color-dark-teal);
}

.contact-value a:hover {
  color: var(--color-coral);
}

.contact-form {
  background: var(--color-cream);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-dark-teal);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.form-checkbox input {
  width: 1rem;
  height: 1rem;
  margin-top: 2px;
  accent-color: var(--color-teal);
}

.form-checkbox a {
  color: var(--color-teal);
  text-decoration: underline;
}

.map-container {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.footer {
  background: var(--color-dark-teal);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.footer-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 24rem;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transform: translateY(150%);
  opacity: 0;
  transition: all var(--transition-slow);
}

.cookie-popup.active {
  transform: translateY(0);
  opacity: 1;
}

.cookie-title {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.cookie-text {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

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

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

.cookie-btn-decline {
  background: var(--color-light-gray);
  color: var(--color-text);
}

.cookie-btn-decline:hover {
  background: var(--color-text-light);
  color: var(--color-white);
}

.page-header {
  background: linear-gradient(135deg, var(--color-dark-teal) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-header h1 {
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: var(--space-md) auto 0;
}

.error-page {
  min-height: 81vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--color-light-gray);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-title {
  margin-bottom: var(--space-md);
}

.error-text {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.thank-you-page {
  min-height: 81vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-teal) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: 2rem;
  color: var(--color-white);
}

.thank-you-title {
  margin-bottom: var(--space-md);
}

.thank-you-text {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  max-width: 28rem;
}

.legal-content {
  padding: var(--space-2xl) 0;
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.legal-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.legal-content li {
  margin-bottom: var(--space-sm);
}

.about-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 50%, var(--color-coral) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
}

.about-image i {
  font-size: 5rem;
  color: var(--color-white);
  opacity: 0.9;
}

.about-text h3 {
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--color-text-light);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-coral);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.consult-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.consult-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.consult-benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal);
  border-radius: var(--radius-md);
  color: var(--color-white);
  flex-shrink: 0;
}

.consult-benefit-text h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.consult-benefit-text p {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Story Section */
.story-section {
  background: var(--color-white);
}

.story-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.story-content {
  max-width: 100%;
}

.story-text {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
}

.story-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.story-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-teal);
}

.story-feature i {
  color: var(--color-coral);
  font-size: 1.2rem;
}

.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 20rem;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 196, 106, 0.1) 0%, rgba(231, 111, 81, 0.1) 100%);
  pointer-events: none;
}

/* Process Section */
.process-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
}

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

.process-step {
  position: relative;
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-coral);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.process-icon {
  width: 4rem;
  height: 4rem;
  margin: var(--space-md) auto var(--space-md);
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-teal) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
}

.process-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.process-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--color-dark-teal) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.stat-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Instructors Section */
.instructors-section {
  background: var(--color-cream);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.instructor-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.instructor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.instructor-avatar {
  width: 6rem;
  height: 6rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-orange) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 3rem;
}

.instructor-name {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.instructor-specialty {
  font-size: 0.85rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.instructor-bio {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.instructor-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-light-gray);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.instructor-stats span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.instructor-stats i {
  color: var(--color-gold);
}

/* Gallery Section */
.gallery-section {
  background: var(--color-white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-teal) 50%, var(--color-coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(38, 70, 83, 0.9) 0%, transparent 100%);
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-title {
  display: block;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.gallery-author {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

@media (min-width: 48rem) {
  .nav-desktop {
    display: block;
  }
  
  .burger {
    display: none;
  }
  
  .slide {
    flex: 0 0 calc(50% - var(--space-md));
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 64rem) {
  .hero-content {
    max-width: 44rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}
@media (max-width: 390px) {
  .logo{
    font-size: 15px;
  }

}
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
    padding: var(--space-md);
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
