/* Main Styles */
:root {
  --primary-color: #0dcaf0;
  --secondary-color: #6c757d;
  --dark-color: #212529;
  --light-color: #f8f9fa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

/* Hero Section */
.hero-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}

.hero-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Timeline */
.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 33.33%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

@media (max-width: 992px) {
  .timeline-item::before {
    left: 50%;
  }
}

/* Feature icons */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(13, 202, 240, 0.1);
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Team */
.card-img-top.overflow-hidden {
  max-height: 300px;
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
}

/* Program cards */
.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.program-features .col-md-6 {
  margin-bottom: 0.75rem;
}

/* Pricing boxes */
.price-box {
  border-radius: 8px;
}

.price-item {
  transition: transform 0.3s ease;
}

.price-item:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background-color: var(--dark-color);
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: #fff;
  z-index: 1000;
  padding: 1rem;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

/* Form styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
}