
:root {
  --primary: #0a4d68;
  --secondary: #5c33a2;
  --gradient-start: #0a4d68;
  --gradient-end: #5c33a2;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a68;
  --bg-light: #f5f7fa;
  --bg-dark: #0f172a;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.text-gradient {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  font-family: 'Quicksand', sans-serif;
}

.btn-primary {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 77, 104, 0.15);
}

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

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

.gradient-bg {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  padding: 0.5rem;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  transition: width 0.3s ease;
}

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

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 10;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.dropdown-item {
  display: block;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.dropdown-item:hover {
  background-color: rgba(10, 77, 104, 0.05);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-phone {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-address {
  position: relative;
  cursor: pointer;
}

.address-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 10;
}

.contact-address:hover .address-tooltip {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}


.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  margin-top: 80px;
}

.hero-split {
  display: flex;
  height: 100%;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.7), rgba(92, 51, 162, 0.7));
}


.metrics {
  padding: 4rem 0;
  background-color: white;
}

.metrics-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.metric-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-label {
  font-size: 1.2rem;
  color: var(--text-secondary);
}


.about {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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


.features {
  padding: 5rem 0;
  background-color: white;
}

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

.feature-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
}


.programs-preview {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

.program-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.program-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.5), rgba(92, 51, 162, 0.5));
}

.program-content {
  padding: 1.5rem;
}

.program-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.program-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.program-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.program-description {
  margin-bottom: 1.5rem;
}

.program-cta {
  text-align: center;
}


.course-structure {
  padding: 5rem 0;
  background-color: white;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.module-item {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  transition: var(--transition);
  cursor: pointer;
}

.module-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.module-title {
  font-size: 1.25rem;
  margin: 0;
}

.module-description {
  color: var(--text-secondary);
}


.learning-format {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.format-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.format-item {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.format-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.format-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.format-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.format-description {
  color: var(--text-secondary);
}


.target-audience {
  padding: 5rem 0;
  background-color: white;
}

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

.audience-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.audience-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.audience-description {
  color: var(--text-secondary);
}


.contact-form-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(10, 77, 104, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

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

.checkbox-group input {
  margin-top: 0.25rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
}


.faq {
  padding: 5rem 0;
  background-color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  padding: 0 0.5rem;
  color: var(--text-secondary);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 0.5rem;
}


.mission-hero {
  padding: 10rem 0 5rem;
  background-color: var(--bg-light);
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mission-section {
  padding: 5rem 0;
}

.mission-section:nth-child(even) {
  background-color: white;
}

.mission-section:nth-child(odd) {
  background-color: var(--bg-light);
}

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

.mission-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}


.programs-hero {
  padding: 10rem 0 5rem;
  background-color: var(--bg-light);
  text-align: center;
}

.programs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.program-detailed {
  margin-bottom: 5rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

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

.program-header-content {
  flex: 2;
  min-width: 300px;
}

.program-header-image {
  flex: 1;
  min-width: 300px;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  position: relative;
}

.program-header-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.5), rgba(92, 51, 162, 0.5));
  border-radius: var(--border-radius);
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.program-modules {
  margin-bottom: 2rem;
}

.program-module {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  margin-bottom: 1rem;
}

.program-result {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.05), rgba(92, 51, 162, 0.05));
  margin-bottom: 2rem;
}

.program-cta-section {
  text-align: center;
  margin-top: 2rem;
}

.case-study {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  margin-top: 2rem;
}


.admission-hero {
  padding: 10rem 0 5rem;
  background-color: var(--bg-light);
  text-align: center;
}

.admission-process {
  padding: 5rem 0;
  background-color: white;
}

.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  margin-bottom: 1rem;
}

.requirements {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.requirements-list {
  max-width: 800px;
  margin: 0 auto;
}

.requirement-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.requirement-icon {
  color: var(--success);
  font-size: 1.5rem;
}

.admission-faq {
  padding: 5rem 0;
  background-color: white;
}


.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--accent);
}

.footer-links-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  max-width: 500px;
}

.cookie-title {
  margin-bottom: 1rem;
}

.cookie-text {
  margin-bottom: 1.5rem;
}

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

.cookie-settings-button {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 999;
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-button:hover {
  transform: scale(1.1);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

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

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

.cookie-modal-title {
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.cookie-category {
  margin-bottom: 2rem;
}

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

.cookie-category-title {
  margin: 0;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

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

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

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

.cookie-modal-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}


.thanks-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thanks-text {
  max-width: 600px;
  margin-bottom: 2rem;
}


.legal-hero {
  padding: 10rem 0 5rem;
  background-color: var(--bg-light);
  text-align: center;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

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

.legal-section {
  margin-bottom: 3rem;
}

.legal-title {
  margin-bottom: 1.5rem;
}

.legal-list {
  margin-left: 1.5rem;
}

.legal-list li {
  margin-bottom: 1rem;
}


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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}


@media (max-width: 992px) {
  .hero-split {
    flex-direction: column;
  }
  
  .hero-image {
    min-height: 50vh;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .nav-item.active .nav-dropdown {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .program-header {
    flex-direction: column;
  }
  
  .contact-info {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .metric-item {
    min-width: 100%;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
}


.iti {
  width: 100%;
}