﻿* {
  box-sizing: border-box;
}

:root {
  --primary-color: #7C3AED;
  --secondary-color: #A78BFA;
  --accent-color: #F59E0B;
  --text-color: #1F2937;
  --text-light: #6B7280;
  --bg-color: #F9FAFB;
  --bg-secondary: #F3F4F6;
  --white: #FFFFFF;
  --dark: #111827;
  --border-color: #E5E7EB;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

h1 { font-size: calc(2rem + 3vw); }
h2 { font-size: calc(1.425rem + 1.1vw); }
h3 { font-size: calc(1.375rem + .8vw); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.375rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  transform: translateY(-1px);
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-12 { flex: 0 0 auto; width: 100%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-8 { flex: 0 0 auto; width: 66.666667%; }
.col-7 { flex: 0 0 auto; width: 58.333333%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-5 { flex: 0 0 auto; width: 41.666667%; }
.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-2 { flex: 0 0 auto; width: 16.666667%; }

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: .925rem 1.875rem;
  font-size: 1.0625rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-action-1 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: var(--primary-color);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), #FBBF24);
  color: white;
  border-color: var(--accent-color);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.15rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: .925rem 1.375rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  background-color: rgba(255,255,255,0.9);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background-color: white;
}

.form-label {
  margin-bottom: .75rem;
  display: inline-block;
  font-weight: 500;
}

.form-check {
  display: block;
  min-height: 1.75rem;
  padding-left: 2.5rem;
  margin-bottom: 0;
  position: relative;
}

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  position: absolute;
  left: 0;
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  gap: 1rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: var(--text-color);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
  background: rgba(124, 58, 237, 0.1);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
  background-image: url('../snaps/m49cf5.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.8), rgba(17, 24, 39, 0.7));
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(245, 158, 11, 0.9);
  color: white;
  backdrop-filter: blur(10px);
}

.bg-accent-glow {
  background: linear-gradient(135deg, var(--accent-color), #FBBF24);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.text-accent {
  color: var(--accent-color);
}

.text-action-1 {
  color: var(--primary-color);
}

.bg-bg-2 {
  background-color: var(--bg-secondary);
}

.bg-bg-3 {
  background-color: var(--bg-color);
}

.bg-action-1 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-dark {
  background-color: var(--dark);
}

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

.text-white {
  color: white !important;
}

.text-muted {
  color: var(--text-light) !important;
}

.stats-card {
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.section-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 2px;
}

.info-card {
  height: 100%;
}

.gradient-border {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.program-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.program-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  color: white;
}

.program-features {
  max-width: 250px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  top: 0;
  left: 0;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.contact-section {
  background: linear-gradient(135deg, var(--primary-color), var(--dark));
}

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

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.footer {
  background: var(--dark);
  border-top: 3px solid var(--primary-color);
}

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 1rem 0;
  z-index: 1040;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.display-2 { font-size: calc(1.725rem + 4.8vw); font-weight: 700; line-height: 1.1; }
.display-3 { font-size: calc(1.675rem + 4.2vw); font-weight: 600; line-height: 1.15; }
.display-4 { font-size: calc(1.625rem + 3.6vw); font-weight: 600; line-height: 1.15; }
.display-5 { font-size: calc(1.525rem + 2.4vw); font-weight: 600; line-height: 1.15; }
.display-6 { font-size: calc(1.375rem + 1.5vw); font-weight: 600; line-height: 1.15; }

.fs-1 { font-size: 1.625rem !important; }
.fs-2 { font-size: 1.4375rem !important; }
.fs-3 { font-size: 1.3125rem !important; }
.fs-4 { font-size: 1.1875rem !important; }
.fs-5 { font-size: 1.125rem !important; }

.fw-light { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-bold { font-weight: 600 !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-sticky { position: sticky !important; }
.position-fixed { position: fixed !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }

.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }

.text-decoration-none { text-decoration: none !important; }

.rounded { border-radius: 8px !important; }
.rounded-2 { border-radius: 12px !important; }
.rounded-3 { border-radius: 16px !important; }
.rounded-pill { border-radius: 50px !important; }
.rounded-circle { border-radius: 50% !important; }

.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important; }
.shadow { box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important; }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important; }

.opacity-90 { opacity: 0.9 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-50 { opacity: 0.5 !important; }

.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ms-0 { margin-left: 0 !important; }
.me-0 { margin-right: 0 !important; }

.m-1 { margin: 0.25rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.me-1 { margin-right: 0.25rem !important; }

.m-2 { margin: 0.75rem !important; }
.mt-2 { margin-top: 0.75rem !important; }
.mb-2 { margin-bottom: 0.75rem !important; }
.ms-2 { margin-left: 0.75rem !important; }
.me-2 { margin-right: 0.75rem !important; }

.m-3 { margin: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.ms-3 { margin-left: 1rem !important; }
.me-3 { margin-right: 1rem !important; }

.m-4 { margin: 1.25rem !important; }
.mt-4 { margin-top: 1.25rem !important; }
.mb-4 { margin-bottom: 1.25rem !important; }
.ms-4 { margin-left: 1.25rem !important; }
.me-4 { margin-right: 1.25rem !important; }

.m-5 { margin: 1.5rem !important; }
.mt-5 { margin-top: 1.5rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }
.ms-5 { margin-left: 1.5rem !important; }
.me-5 { margin-right: 1.5rem !important; }

.m-6 { margin: 1.75rem !important; }
.mt-6 { margin-top: 1.75rem !important; }
.mb-6 { margin-bottom: 1.75rem !important; }
.ms-6 { margin-left: 1.75rem !important; }
.me-6 { margin-right: 1.75rem !important; }

.m-7 { margin: 2rem !important; }
.mt-7 { margin-top: 2rem !important; }
.mb-7 { margin-bottom: 2rem !important; }
.ms-7 { margin-left: 2rem !important; }
.me-7 { margin-right: 2rem !important; }

.m-8 { margin: 2.25rem !important; }
.mt-8 { margin-top: 2.25rem !important; }
.mb-8 { margin-bottom: 2.25rem !important; }
.ms-8 { margin-left: 2.25rem !important; }
.me-8 { margin-right: 2.25rem !important; }

.m-9 { margin: 2.5rem !important; }
.mt-9 { margin-top: 2.5rem !important; }
.mb-9 { margin-bottom: 2.5rem !important; }
.ms-9 { margin-left: 2.5rem !important; }
.me-9 { margin-right: 2.5rem !important; }

.mt-10 { margin-top: 2.75rem !important; }
.mb-10 { margin-bottom: 2.75rem !important; }
.mt-11 { margin-top: 3rem !important; }
.mb-11 { margin-bottom: 3rem !important; }
.mt-12 { margin-top: 3.5rem !important; }
.mb-12 { margin-bottom: 3.5rem !important; }
.mt-13 { margin-top: 3.75rem !important; }
.mb-13 { margin-bottom: 3.75rem !important; }
.mt-16 { margin-top: 4.5rem !important; }
.mb-16 { margin-bottom: 4.5rem !important; }

.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.75rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.25rem !important; }
.p-5 { padding: 1.5rem !important; }
.p-6 { padding: 1.75rem !important; }
.p-7 { padding: 2rem !important; }
.p-8 { padding: 2.25rem !important; }
.p-9 { padding: 2.5rem !important; }
.p-10 { padding: 2.75rem !important; }

.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8 { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
.py-10 { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
.py-11 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.px-4 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-5 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-6 { padding-left: 1.75rem !important; padding-right: 1.75rem !important; }

.ps-9 { padding-left: 2.5rem !important; }
.ps-10 { padding-left: 2.75rem !important; }
.ps-12 { padding-left: 3.5rem !important; }

.pt-3 { padding-top: 1rem !important; }
.pb-3 { padding-bottom: 1rem !important; }

.gap-3 { gap: 1rem !important; }

.small { font-size: 0.875rem !important; }
.lead { font-size: 1.25rem !important; font-weight: 300; }

@media (min-width: 576px) {
  .container { max-width: 560px; }
  
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
  
  .mb-sm-0 { margin-bottom: 0 !important; }
}

@media (min-width: 768px) {
  .container { max-width: 740px; }
  
  .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  
  .flex-md-row { flex-direction: row !important; }
  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
  .mb-md-0 { margin-bottom: 0 !important; }
  .mt-md-0 { margin-top: 0 !important; }
  
  .py-md-21 { padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
}

@media (min-width: 992px) {
  .container { max-width: 980px; }
  
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  
  .text-lg-start { text-align: left !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .py-lg-21 { padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
}

@media (min-width: 1200px) {
  .container { max-width: 1160px; }
  
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
  
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.125rem; }
  h3 { font-size: 1.875rem; }
  .display-2 { font-size: 4rem; }
  .display-3 { font-size: 4.75rem; }
  .display-4 { font-size: 3.5rem; }
  .display-5 { font-size: 3.25rem; }
  .display-6 { font-size: 2.5rem; }
}

@media (min-width: 1400px) {
  .container { max-width: 1340px; }
  
  .col-xxl-3 { flex: 0 0 auto; width: 25%; }
  .col-xxl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xxl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xxl-6 { flex: 0 0 auto; width: 50%; }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  .stats-card {
    padding: 1.5rem;
  }
  
  .program-card {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .py-11 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}