/* Base Styles and Variables */
:root {
  /* Light Theme Colors - Based on the UP School design */
  --primary-color: #0052cc; /* Royal blue */
  --secondary-color: #f8f9fa; /* Light gray */
  --accent-color-yellow: #ffc400; /* Yellow/gold */
  --accent-color-light-blue: #4c9aff; /* Light blue */
  --accent-color-dark-blue: #0747a6; /* Dark blue */
  --background-color: #ffffff;
  --card-bg-color: #f8f9fa;
  --text-color: #172b4d; /* Dark blue-gray */
  --text-light-color: #6b778c; /* Medium gray */
  --border-color: #dfe1e6;
  --shadow-color: rgba(9, 30, 66, 0.1);
  --header-bg: rgba(255, 255, 255, 0.95);
  --blue-light: #4c9aff; /* Lighter blue */
  --blue-dark: #0747a6; /* Darker blue */
  --section-bg-dark: #172b4d; /* Dark blue for sections */
  --section-bg-light: #f4f5f7; /* Light gray for sections */
}

[data-theme="dark"] {
  /* Dark Theme Colors */
  --primary-color: #4c9aff; /* Lighter blue for dark mode */
  --secondary-color: #1c2b41; /* Darker gray */
  --accent-color-yellow: #ffab00; /* Darker yellow */
  --accent-color-light-blue: #79b8ff; /* Lighter blue */
  --accent-color-dark-blue: #0052cc; /* Original blue */
  --background-color: #0d1424;
  --card-bg-color: #172b4d;
  --text-color: #f5f5f5;
  --text-light-color: #b0b0b0;
  --border-color: #2c3e50;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --header-bg: rgba(13, 20, 36, 0.95);
  --blue-light: #79b8ff; /* Even lighter blue */
  --blue-dark: #0052cc; /* Original blue */
  --section-bg-dark: #0d1424; /* Darker blue for sections */
  --section-bg-light: #172b4d; /* Medium blue for sections */
}

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

body {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

a:hover {
  color: var(--blue-light);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.btn-secondary {
  background-color: var(--accent-color-yellow);
  color: var(--text-color);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-secondary:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

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

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

/* Header and Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px var(--shadow-color);
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

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

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.theme-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.theme-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.theme-toggle button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .fa-sun {
  display: none;
}

[data-theme="dark"] .fa-moon {
  display: none;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--background-color);
  border-radius: 4px;
  box-shadow: 0 5px 15px var(--shadow-color);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  padding: 0.5rem 0;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

.sign-in-btn {
  margin-right: 60px;
}

.sign-in-btn .btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sign-in-btn .btn:hover {
  background-color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--shadow-color);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--background-color);
}

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

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

/* Partners Section */
.partners {
  padding: 30px 0;
  background-color: var(--primary-color);
}

.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logo {
  padding: 0 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--section-bg-light);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 82, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

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

.feature-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Courses Section */
.courses {
  padding: 80px 0;
  background-color: var(--section-bg-dark);
  color: white;
}

.courses-header {
  text-align: center;
  margin-bottom: 60px;
}

.courses-header h2 {
  color: white;
  margin-bottom: 20px;
}

.courses-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.courses-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.courses-list {
  list-style: none;
}

.course-item {
  margin-bottom: 40px;
}

.course-item:last-child {
  margin-bottom: 0;
}

.course-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.course-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--text-color);
  font-size: 1.2rem;
}

.course-title h3 {
  color: white;
  margin-bottom: 0;
}

.course-description {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 55px;
}

.courses-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.courses-dots {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--accent-color-yellow) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 1;
}

/* Videos Section */
.videos {
  padding: 80px 0;
  background-color: var(--background-color);
}

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.videos-controls {
  display: flex;
  gap: 10px;
}

.video-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--card-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-color);
}

.video-control:hover {
  background-color: var(--primary-color);
  color: white;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.video-thumbnail {
  position: relative;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.video-play:hover {
  background-color: var(--primary-color);
  color: white;
}

.video-dots {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-dot.active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 4px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--section-bg-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-text {
  color: var(--text-light-color);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(0, 82, 204, 0.1);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--text-light-color);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  margin-top: 5px;
  color: var(--accent-color-yellow);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--section-bg-dark);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--background-color);
  padding: 80px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-logo p {
  color: var(--text-light-color);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 82, 204, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light-color);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light-color);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-light-color);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .courses-image {
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--background-color);
    width: 100%;
    height: calc(100vh - 80px);
    transition: 0.3s;
    box-shadow: 0 10px 20px var(--shadow-color);
    padding: 2rem 0;
    align-items: flex-start;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0;
    width: 100%;
    padding: 1rem 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .theme-toggle {
    right: 70px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .partners-grid {
    justify-content: center;
    gap: 30px;
  }

  .partner-logo {
    width: 120px;
  }
}

/* Additional Styles for Enrollment Page */
.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 25px;
  width: 2px;
  height: calc(100% - 50px);
  background-color: var(--primary-color);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

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

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

.step-content .btn {
  margin-top: 1rem;
  margin-right: 0.5rem;
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--card-bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

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

/* Page Header */
.page-header {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  color: white;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 82, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background-color: var(--background-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 20px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Programs Page Styles */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.program-card {
  background-color: var(--background-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

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

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color-yellow);
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.program-content {
  padding: 20px;
}

.program-content h3 {
  margin-bottom: 10px;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  color: var(--text-light-color);
}

.program-meta div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.program-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.loading {
  text-align: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 82, 204, 0.1);
  border-left-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.categories-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  background-color: var(--card-bg-color);
  color: var(--text-color);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: rgba(0, 82, 204, 0.1);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
}
