/* Brand and utility vars */
:root {
  --primary: #191970;
  --primary-dark: #0A2463;
  --secondary: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.5;
  background-color: white;
}

/* Header / Nav */
.header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  background-color: rgba(255,255,255,0.95);
}
.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 35px;
  transition: transform 0.3s ease;
}
.logo:hover { 
  transform: scale(1.02);
}
nav.flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: 2rem;
}
.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}
.nav-link:hover { 
  color: var(--primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after { 
  width: 100%;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background-color: rgba(37,99,235,0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  color: var(--primary);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.dropdown-toggle:hover {
  color: var(--primary);
}
.dropdown-toggle .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.2s ease-in-out;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1000;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.dropdown:hover .dropdown-menu,
.dropdown-toggle:focus + .dropdown-menu,
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(37,99,235,0.05);
  color: var(--primary);
}

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background-color: var(--light);
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Page Content */
.page-content {
  padding: 60px 2rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.page-content p {
  margin-bottom: 1rem;
  color: var(--dark);
}
.page-content ul, .page-content ol {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}
.page-content li {
  margin-bottom: 0.5rem;
}
.page-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.page-content a:hover {
  text-decoration: underline;
}
.page-content img.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.page-content a.btn-primary {
  color: white !important;
}

/* CTA Section */
.cta-section {
  padding: 60px 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
  margin-top: 4rem;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
  border: 2px solid var(--secondary);
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}
.cta-section .btn-secondary:hover {
  background-color: #eab308;
  border-color: #eab308;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

/* Footer */
.footer {
  background: #202426;
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-socials {
  margin-top: 1rem;
}
.footer-socials a {
  color: #a0aec0;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}
.footer-socials a:hover {
  color: var(--secondary);
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  font-size: 0.85rem;
  color: #a0aec0;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-dark { color: var(--dark); }
.text-light { color: var(--light); }
.text-gray { color: var(--gray); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-dark { background-color: var(--dark); }
.bg-light { background-color: var(--light); }
.hidden { display: none; }

/* Info Box Component */
.info-box {
  background-color: #f3f4f6;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}
.info-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.info-box p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Funding Options Grid */
.funding-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.funding-option-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.funding-option-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.funding-option-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}
.funding-option-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.funding-option-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.funding-option-card .learn-more-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.funding-option-card .learn-more-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  nav.flex { display: none; }
  .mobile-nav { display: block; }
  .header-container { padding: 0.75rem 1rem; }
  
  .mobile-nav .nav-links {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
  }

  .mobile-nav .nav-link {
    display: block;
    padding: 0.875rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-nav .cta-buttons {
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-nav .btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .mobile-nav .dropdown {
    width: 100%;
  }
  .mobile-nav .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .mobile-nav .dropdown-toggle:hover {
    color: var(--primary);
  }
  .mobile-nav .dropdown-toggle .fa-chevron-down {
    font-size: 0.8rem;
  }
  .mobile-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    margin-top: 0.5rem;
    display: none;
  }

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

  .mobile-nav .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
  }
  .mobile-nav .dropdown-item:last-child {
    border-bottom: none;
  }
}

/* Add padding for fixed header */
main {
  padding-top: 72px; /* Height of the header */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Form Styles */
.form-input {
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

/* Loading States */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Gradient background utility */
.gradient-bg {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
}

/* Update CTA section gradient */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* Footer styles */
.footer {
  background: #202426;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 45px;
  margin-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  color: #9ca3af;
  line-height: 1.7;
}

.footer-contact strong {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Add padding for fixed header */
main {
  padding-top: 72px; /* Height of the header */
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cta-primary {
  background: white;
  color: var(--primary-dark);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-animation {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary, .cta-secondary {
    text-align: center;
    justify-content: center;
  }
}

/* Programs section styles */
.programs {
  padding: 6rem 0;
  background: var(--light);
}

.programs h2 {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 3rem;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.program-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

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

.card-header {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  margin: -2rem -2rem 2rem;
  border-radius: 16px 16px 0 0;
  text-align: center;
}

.card-header.orange {
  background: #f59e0b;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-size: 1rem;
}

.feature-icon {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pricing {
  margin: 2rem 0;
}

.price-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-period {
  font-size: 1rem;
  color: #64748b;
  font-weight: normal;
}

.save-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #f97316;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 0 16px 0 16px;
}

.best-value-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 1;
}

.enroll-button {
  display: block;
  width: 100%;
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.enroll-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.enroll-button.orange {
  background: #f59e0b;
}

.enroll-button.orange:hover {
  background: #d97706;
}

.money-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 1rem;
  justify-content: center;
}

@media (max-width: 1024px) {
  .program-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .program-cards {
    grid-template-columns: 1fr;
  }
  
  .programs h2 {
    font-size: 2rem;
    padding: 0 1rem;
  }
}

/* How It Works section styles */
.how-it-works {
  background: linear-gradient(135deg, #3F7397, #15568B);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 20px,
    transparent 20px,
    transparent 40px
  );
}

.how-it-works h2 {
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.process-step {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #F1F3F5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #1A4B7D;
}

.step-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A4B7D;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #15568B;
  margin-bottom: 1rem;
}

.step-description {
  color: #3F7397;
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-arrow {
  position: absolute;
  top: 40%;
  right: -1rem;
  color: #FFFFFF;
  font-size: 2rem;
  z-index: 1;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .how-it-works h2 {
    font-size: 2.5rem;
  }
}

/* Meet LaShandra section styles */
.meet-LaShandra {
  padding: 6rem 0;
  background: #fff;
}

.meet-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.meet-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #15568B;
  margin-bottom: 2rem;
}

.meet-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1A4B7D;
  margin-bottom: 1.5rem;
}

.meet-content .quote {
  font-style: italic;
  color: #3F7397;
  border-left: 4px solid #3F7397;
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.profile-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.3s ease;
}

.profile-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.profile-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #3F7397;
}

.credential-icon {
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .meet-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .meet-content h2 {
    font-size: 2.5rem;
  }

  .profile-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .meet-content h2 {
    font-size: 2rem;
  }

  .credentials {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Video Section */
.video-section {
  padding: 6rem 0;
  background: var(--light);
}

.video-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.video-section .grid {
  display: grid;
  gap: 3rem;
}

.video-section .left-column {
  text-align: center;
}

.video-section .right-column {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-section .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-section .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .video-info {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.video-section .video-info .inline-block {
  @apply gradient-bg text-white text-sm font-semibold px-4 py-1 rounded-full mb-4;
}

.video-section .video-info h3 {
  @apply text-2xl font-bold text-gray-900 mb-4;
}

.video-section .video-info .text-4xl {
  @apply text-4xl font-bold text-gray-900 mb-6;
}

.video-section .video-info p {
  @apply text-gray-600 mb-6;
}

.video-section .video-info ul {
  @apply space-y-4;
}

.video-section .video-info li {
  @apply flex items-start;
}

.video-section .video-info li svg {
  @apply w-5 h-5 text-blue-600 mt-1 mr-3;
}

.video-section .video-info .mt-8 {
  @apply mt-8 flex items-center text-sm text-gray-500;
}

.video-section .video-info .mt-8 svg {
  @apply w-5 h-5 text-yellow-500 mr-2;
}

.video-section .video-info .mt-8 span {
  @apply text-gray-600;
}

.video-section .video-info .mt-8 a {
  @apply mt-8 block w-full gradient-bg text-white text-center font-semibold py-3 rounded-lg hover:bg-blue-700 transition duration-300;
}
  