/* ItaStudy - Exact Replica CSS */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --teal: #0d7377;
  --teal-dark: #0a5a5d;
  --teal-light: #149699;
  --gold: #c9a227;
  --gold-dark: #a88820;
  --gold-light: #d4b43a;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s;
}

.header.scrolled .logo-title {
  color: var(--teal);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.header.scrolled .logo-subtitle {
  color: var(--gray-600);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.header.scrolled .mobile-menu-btn svg {
  color: var(--teal);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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.03'%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;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-title span {
      color: #fde68a; /* WCAG AA accessible gold on dark background */
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

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

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

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

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

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.section-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--teal);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--teal);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
  transition: color 0.3s;
}

.feature-card:hover .feature-icon svg {
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.testimonial-name {
  font-weight: 700;
  color: var(--teal);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--teal);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: var(--teal);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.footer-brand-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: white;
}

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

.footer-bottom p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom svg {
  width: 16px;
  height: 16px;
  fill: #ef4444;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 1rem;
  right: 1rem;
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.mobile-nav-link:hover {
  background: rgba(13, 115, 119, 0.1);
  color: var(--teal);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* Page Content */
.page-content {
  padding-top: 80px;
  min-height: 100vh;
}

/* Universities Page */
.universities-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.universities-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.universities-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.search-filter-section {
  background: white;
  padding: 2rem 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.search-box input {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.search-box input:focus {
  outline: none;
  border-color: var(--teal);
}

.search-box svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

.region-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.region-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.region-btn:hover {
  background: var(--gray-200);
}

.region-btn.active {
  background: var(--teal);
  color: white;
}

.universities-count {
  text-align: center;
  margin-top: 1.5rem;
}

.universities-count .count {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
}

.universities-count .label {
  color: var(--gray-600);
  font-size: 1rem;
}

.universities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

.university-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.university-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

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

.university-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.university-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

.university-location {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.university-name-ar {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.university-name-it {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.university-description {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.university-departments {
  margin-bottom: 1rem;
}

.university-departments h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.departments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.department-tag {
  padding: 0.25rem 0.5rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  border-radius: 4px;
}

.university-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.university-link svg {
  width: 16px;
  height: 16px;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.about-hero .section-label {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

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

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1.5rem;
}

.story-logo-box {
  background: var(--gray-50);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.story-logo {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.story-logo .italy {
  color: var(--teal);
}

.story-logo .plus {
  color: var(--gold);
  margin: 0 0.5rem;
}

.story-logo .study {
  color: var(--teal);
}

.story-logo-box p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Why Section */
.why-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
  padding: 5rem 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.comparison-card {
  border-radius: 16px;
  padding: 2rem;
}

.comparison-card.illegal {
  background: #fef2f2;
  border: 2px solid #fecaca;
}

.comparison-card.legal {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}

.comparison-card h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.comparison-card.illegal h3 {
  color: #dc2626;
}

.comparison-card.legal h3 {
  color: #16a34a;
}

.comparison-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comparison-card.illegal h4 {
  color: #7f1d1d;
}

.comparison-card.legal h4 {
  color: #14532d;
}

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.comparison-list li span {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.comparison-card.illegal .comparison-list li span {
  background: #fecaca;
  color: #dc2626;
}

.comparison-card.legal .comparison-list li span {
  background: #bbf7d0;
  color: #16a34a;
}

.comparison-card.illegal .comparison-list li {
  color: #7f1d1d;
}

.comparison-card.legal .comparison-list li {
  color: #14532d;
}

/* Steps */
.steps-section {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 115, 119, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
}

.step-number {
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-text {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 500;
}

/* Savings Box */
.savings-box {
  background: rgba(201, 162, 39, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.savings-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.savings-box p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
}

.faq-question-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faq-category {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

.faq-question-text span:last-child {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 5rem 0;
  text-align: center;
}

.mission-section svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.mission-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.mission-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.mission-section .mission-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

/* Responsive for Universities and About */
@media (max-width: 1024px) {
  .universities-grid {
    grid-template-columns: 1fr;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .universities-hero h1,
  .about-hero h1 {
    font-size: 1.75rem;
  }
  
  .region-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  
  .steps-list {
    flex-direction: column;
    align-items: center;
  }
}
