@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-1: #332D56; /* deep purple */
    --primary-2: #4E6688; /* blue-gray */
    --primary-3: #71C0BB; /* teal */
    --primary-4: #E3EEB2; /* light green */
    --primary-font-family: 'Montserrat', sans-serif;
    --primary-font-size: 2.25rem;
    --primary-font-weight: 700;
    --primary-text-transform: none;
    --primary-font-style: normal;
    --primary-text-decoration: none;
    --primary-line-height: 1.2;
    --primary-letter-spacing: 0;
    --primary-word-spacing: 0;
    --primary-color: var(--primary-1);
}

body {
    font-family: 'Inter', sans-serif;
}

.hero-gradient {
    background: linear-gradient(180deg, #fff 60%, #4E6688 40%);
}

.btn-primary {
    background: var(--primary-1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #71C0BB;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(51, 45, 86, 0.1);
}

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

#pdf-viewer {
    border: 1px solid #E3EEB2;
    border-radius: 0.5rem;
}

.highlight-box {
    transition: all 0.3s ease;
}

.highlight-box:hover {
    background-color: #E3EEB2;
}

h1, h2, h3, .cta-title {
    font-family: var(--primary-font-family);
    font-size: var(--primary-font-size);
    font-weight: var(--primary-font-weight);
    text-transform: var(--primary-text-transform);
    font-style: var(--primary-font-style);
    text-decoration: var(--primary-text-decoration);
    line-height: var(--primary-line-height);
    letter-spacing: var(--primary-letter-spacing);
    word-spacing: var(--primary-word-spacing);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-stack {
        flex-direction: column;
    }
}

.slide-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

/* Glass effect for testimonial cards */
.glass-effect {
  background: rgba(227, 238, 178, 0.25);
  box-shadow: 0 8px 32px 0 rgba(51, 45, 86, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  border: 1px solid rgba(227, 238, 178, 0.18);
  transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
  min-width: 260px;
  max-width: 320px;
  cursor: pointer;
  position: relative;
}
.glass-effect:hover {
  transform: scale(1.08) translateY(-10px);
  z-index: 10;
  box-shadow: 0 16px 40px 0 rgba(51, 45, 86, 0.25);
}

/* Marquee animation */
.marquee {
  animation: marquee 30s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonial popup */
.testimonial-popup {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: rgba(227,238,178,0.95);
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(51,45,86,0.15);
  padding: 1rem;
  margin-top: 0.5rem;
  z-index: 20;
  min-width: 220px;
  display: none;
}
.testimonial-card:hover .testimonial-popup {
  display: block;
}

/* Responsive tweaks for new sections */
@media (max-width: 768px) {
  .marquee { flex-wrap: wrap; animation: none; }
  .testimonial-card { min-width: 90vw; max-width: 95vw; }
}

/* How it Works icons */
.how-it-works-step .fa {
  font-size: 2.5rem;
}

/* Sliding Banner Section Responsive Styles */
.banner-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 16rem;
  padding: 0;
}
@media (min-width: 768px) {
  .banner-swiper .swiper-slide {
    flex-direction: row;
    min-height: 18rem;
    height: 18rem;
  }
  .banner-swiper .swiper-slide > div {
    height: 100%;
  }
}
.banner-swiper img {
  max-width: 100%;
  max-height: 10rem;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .banner-swiper img {
    max-height: 12rem;
  }
}
.banner-swiper .swiper-slide > div {
  box-sizing: border-box;
}
.banner-swiper .swiper-slide .p-6, .banner-swiper .swiper-slide .p-10 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-bg-video {
  filter: blur(8px) brightness(0.6);
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* Unique Modern CTA Section */
.footer-cta-section {
  background: #E3EEB2;
  position: relative;
  overflow: hidden;
}
.cta-pill {
  border-radius: 9999px;
  background: #E3EEB2;
  border: 4px solid #71C0BB;
  box-shadow: 0 8px 32px 0 rgba(51, 45, 86, 0.10);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-pill .cta-highlight {
  background: #71C0BB;
  color: #332D56;
  font-weight: 700;
  padding: 0 0.5rem;
  border-radius: 0.75rem;
  display: inline-block;
}
.cta-pill .fa-envelope-open-text {
  font-size: 2.5rem;
}
.cta-form {
  width: 100%;
  max-width: 22rem;
  position: relative;
}
.cta-input {
  border-radius: 9999px;
  border: 2px solid #332D56;
  background: #E3EEB2;
  color: #332D56;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(51, 45, 86, 0.08);
  padding-right: 8rem;
}
.cta-input::placeholder {
  color: #332D56;
  opacity: 0.7;
}
.cta-btn {
  border-radius: 9999px;
  background: #332D56;
  color: #E3EEB2;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(51, 45, 86, 0.10);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #4E6688;
  color: #71C0BB;
}
@media (max-width: 900px) {
  .cta-pill {
    flex-direction: column;
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
  .cta-form {
    max-width: 100%;
  }
  .cta-btn.md\:inline-block {
    display: none !important;
  }
  .cta-btn.md\:hidden {
    display: block !important;
  }
}
@media (max-width: 600px) {
  .cta-pill {
    flex-direction: column;
    border-radius: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
  .cta-form {
    max-width: 100%;
  }
  .cta-btn.md\:inline-block {
    display: none !important;
  }
  .cta-btn.md\:hidden {
    display: block !important;
  }
}

/* Modernized Footer - fix linter errors */
.footer-main h4 {
  color: #71C0BB !important;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

/* Modernized Footer */
.footer-main {
  background: #332D56;
  color: #E3EEB2;
  font-size: 1rem;
}
.footer-main a {
  color: #E3EEB2;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-main a:hover {
  color: #71C0BB;
  text-decoration: underline;
}
.footer-main .grid {
  gap: 2rem;
}
.footer-main .flex-1 {
  min-width: 180px;
}
.footer-main .text-2xl {
  font-size: 1.5rem;
}
.footer-main .text-3xl {
  font-size: 2rem;
}
.footer-main .uppercase {
  letter-spacing: 0.1em;
}
.footer-main .space-x-6 > * + * {
  margin-left: 1.5rem;
}
.footer-main .border-t {
  border-color: #71C0BB !important;
}

/* Social Icons */
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #71C0BB;
  color: #E3EEB2;
  font-size: 1.25rem;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-icon:hover {
  background: #71C0BB;
  color: #332D56;
  border-color: #E3EEB2;
}

@media (max-width: 900px) {
  .footer-main .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .footer-cta-section .rounded-2xl {
    flex-direction: column !important;
    padding: 1.5rem !important;
  }
  .footer-main .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-main .flex-1 {
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

/* Modern FAQ Section */
#faq {
  background: #E3EEB2;
}
.faq-card {
  background: #332D56;
  border: 2px solid #71C0BB;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(51, 45, 86, 0.08);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.faq-card:hover, .faq-card.active {
  box-shadow: 0 8px 32px 0 rgba(51, 45, 86, 0.15);
  border-color: #332D56;
  transform: translateY(-2px) scale(1.01);
}
.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #332D56;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.faq-icon {
  font-size: 2rem;
  color: #332D56;
  transition: transform 0.3s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.faq-card.active .faq-icon {
  transform: rotate(45deg);
  color: #71C0BB;
}
.faq-answer {
  color: #332D56;
  background: #E3EEB2;
  border-radius: 0 0 1.5rem 1.5rem;
  margin-top: -0.5rem;
  animation: fadeInFaq 0.3s;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .faq-card {
    border-radius: 1rem;
    padding: 0;
  }
  .faq-question, .faq-answer {
    font-size: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Modern Testimonials Section */
section.bg-\[#FFFBE6\] {
  background: #E3EEB2;
}
.testimonial-card-modern {
  background: #332D56;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(51, 45, 86, 0.10);
  border-left: 8px solid #71C0BB;
  min-width: 320px;
  max-width: 340px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.testimonial-card-modern:hover {
  box-shadow: 0 12px 36px 0 rgba(51, 45, 86, 0.18);
  transform: translateY(-6px) scale(1.04);
  border-color: #332D56;
}
.glass-effect-modern {
  background: rgba(227,238,178,0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.testimonial-card-modern h3 {
  color: #332D56;
  font-size: 1.25rem;
  font-weight: 700;
}
.testimonial-card-modern span {
  color: #71C0BB;
  font-weight: 600;
}
.testimonial-card-modern p {
  color: #332D56;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.testimonial-card-modern .fa-quote-left {
  color: #71C0BB;
  font-size: 1.1rem;
  vertical-align: middle;
}
.testimonial-card-modern img {
  border-radius: 50%;
  border: 4px solid #71C0BB;
  background: #E3EEB2;
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.marquee {
  gap: 2.5rem;
  padding-bottom: 1rem;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .marquee {
    gap: 1.5rem;
    animation: none;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .testimonial-card-modern {
    min-width: 85vw;
    max-width: 95vw;
  }
}
@media (max-width: 600px) {
  .testimonial-card-modern {
    min-width: 95vw;
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
}

/* Modern How It Works Timeline Section */
section.bg-\[#FFFBE6\] {
  background: #E3EEB2;
}
.how-works-timeline {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.how-works-timeline .timeline-line {
  position: absolute;
  left: 50%;
  top: 56px;
  transform: translateX(-50%);
  width: 75%;
  height: 8px;
  background: #71C0BB;
  z-index: 0;
  border-radius: 4px;
}
.how-works-timeline .step {
  z-index: 10;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-works-timeline .step-circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #71C0BB;
  background: #332D56;
  color: #E3EEB2;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px 0 rgba(51, 45, 86, 0.08);
}
.how-works-timeline .step-label {
  font-weight: 700;
  color: #332D56;
  font-size: 1.15rem;
  text-align: center;
}
@media (max-width: 900px) {
  .how-works-timeline {
    flex-direction: column;
    gap: 2.5rem;
  }
  .how-works-timeline .timeline-line {
    display: none;
  }
  .how-works-timeline .step {
    width: 100%;
  }
}

/* Modernized Glassy Testimonial Card */
.glassy-card {
  background: rgba(227,238,178,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(51, 45, 86, 0.18);
  border: none;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
  min-width: 340px;
  max-width: 380px;
  overflow: visible;
}
.glassy-card:hover {
  box-shadow: 0 16px 48px 0 #71C0BB88, 0 8px 32px 0 rgba(51, 45, 86, 0.18);
  transform: translateY(-8px) scale(1.04);
  border-color: #71C0BB;
}
.glassy-card .w-20.h-20 {
  width: 5rem;
  height: 5rem;
}
.glassy-card img {
  border-radius: 50%;
  border: 4px solid #71C0BB;
  background: #E3EEB2;
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  box-shadow: 0 2px 12px 0 rgba(51, 45, 86, 0.10);
}
.glassy-card h3 {
  color: #332D56;
  font-size: 1.5rem;
  font-weight: 800;
}
.glassy-card p {
  color: #332D56;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.glassy-card .fa-quote-left {
  color: #71C0BB;
  opacity: 0.25;
  font-size: 2.5rem;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 0;
}
.glassy-card span {
  color: #71C0BB;
  font-weight: 700;
}
/* Marquee fade-out masks */
.modern-marquee {
  display: flex;
  gap: 3rem;
  padding-bottom: 1rem;
  animation: modern-marquee 40s linear infinite;
  will-change: transform;
}
.modern-marquee:hover {
  animation-play-state: paused;
}
@keyframes modern-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .modern-marquee {
    gap: 1.5rem;
    animation: none;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .glassy-card {
    min-width: 85vw;
    max-width: 95vw;
  }
}
@media (max-width: 600px) {
  .glassy-card {
    min-width: 95vw;
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
}

/* Redesigned About/Why Choose Us Section */
.feature-card-modern {
  background: rgba(227, 238, 178, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(113, 192, 187, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #332D56, #71C0BB);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(51, 45, 86, 0.15);
  border-color: rgba(113, 192, 187, 0.4);
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E3EEB2, #71C0BB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  border: 3px solid #332D56;
}

.feature-card-modern:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(51, 45, 86, 0.2);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #332D56;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-description {
  color: #332D56;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.modern-cta-btn {
  background: linear-gradient(135deg, #332D56, #4E6688);
  color: #E3EEB2;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(51, 45, 86, 0.3);
  border: 2px solid transparent;
}

.modern-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 45, 86, 0.4);
  background: linear-gradient(135deg, #4E6688, #332D56);
  color: #E3EEB2;
}

.modern-cta-btn i {
  transition: transform 0.3s ease;
}

.modern-cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .feature-card-modern {
    padding: 1.5rem;
  }
  
  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .feature-card-modern {
    padding: 1.25rem;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
}

/* Interactive How It Works Section */
.journey-tab {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #71C0BB;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}

.journey-tab:hover {
  background: rgba(113, 192, 187, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 45, 86, 0.1);
}

.journey-tab.active {
  background: #332D56;
  border-color: #332D56;
  color: #E3EEB2;
  box-shadow: 0 4px 12px rgba(51, 45, 86, 0.2);
}

.journey-tab-label {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.journey-tab-subtitle {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.journey-content {
  position: relative;
}

.journey-panel {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.journey-panel.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.journey-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-step {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 200px;
  max-width: 250px;
  box-shadow: 0 4px 20px rgba(51, 45, 86, 0.08);
  border: 2px solid rgba(113, 192, 187, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.journey-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(51, 45, 86, 0.12);
  border-color: #71C0BB;
}

.step-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E3EEB2, #71C0BB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid #332D56;
  transition: all 0.3s ease;
}

.journey-step:hover .step-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(51, 45, 86, 0.2);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #332D56;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.step-description {
  color: #332D56;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #71C0BB;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@media (max-width: 1024px) {
  .journey-steps {
    gap: 0.75rem;
  }
  
  .journey-step {
    min-width: 180px;
    padding: 1.5rem 1rem;
  }
  
  .step-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .journey-tab {
    min-width: 120px;
    padding: 0.75rem 1rem;
  }
  
  .journey-tab-label {
    font-size: 1rem;
  }
  
  .journey-tab-subtitle {
    font-size: 0.8rem;
  }
  
  .journey-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .journey-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
  
  .journey-step {
    min-width: 100%;
    max-width: 100%;
    padding: 1.25rem;
  }
  
  .step-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.85rem;
  }
}

/* ===== Modern Testimonials Carousel ===== */
#testimonials {
  position: relative;
  overflow: hidden;
}
#testimonials .section-title {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
#testimonials .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (3 * 2rem)) / 4);
  gap: 2rem;
  animation: testimonials-marquee 60s linear infinite;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#testimonials .carousel:hover {
  animation-play-state: paused;
}
@keyframes testimonials-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
#testimonials .card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(113,192,187,0.18);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: testimonials-fadeInUp 0.6s ease forwards;
  box-shadow: 0 8px 32px 0 rgba(51, 45, 86, 0.10);
}
#testimonials .card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,transparent,rgba(113,192,187,0.08),transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}
#testimonials .card:hover::before {
  transform: translateX(100%);
}
#testimonials .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(113,192,187,0.18), 0 8px 32px 0 rgba(51, 45, 86, 0.10);
  border: 1.5px solid #71C0BB;
}
#testimonials .card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #E3EEB2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#testimonials .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#testimonials .card:hover .card-media img {
  transform: scale(1.08);
}
#testimonials .card-body {
  position: relative;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: rgba(255,255,255,0.85);
  z-index: 2;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#testimonials .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #332D56;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}
#testimonials .card-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#71C0BB,#4E6688);
  transition: width 0.3s ease;
}
#testimonials .card:hover .card-title::after {
  width: 100%;
}
#testimonials .card:hover .card-title {
  color: #71C0BB;
}
#testimonials .card-subtitle {
  font-size: 1rem;
  color: #4E6688;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
#testimonials .card:hover .card-subtitle {
  color: #332D56;
}
#testimonials .card p {
  color: #332D56;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  text-align: center;
}
@keyframes testimonials-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
#testimonials .card:nth-child(1) { animation-delay: 0.1s; }
#testimonials .card:nth-child(2) { animation-delay: 0.2s; }
#testimonials .card:nth-child(3) { animation-delay: 0.3s; }
#testimonials .card:nth-child(4) { animation-delay: 0.4s; }
@media screen and (max-width: 1024px) {
  #testimonials .carousel {
    grid-auto-columns: 60vw;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #testimonials .carousel {
    grid-auto-columns: 100%;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  #testimonials .card {
    max-width: 100%;
    margin: 0 auto;
  }
  #testimonials .card-media {
    height: 160px;
  }
  #testimonials .card-body {
    padding: 1.25rem;
  }
  #testimonials .card-title {
    font-size: 1rem;
  }
  #testimonials .card-subtitle {
    font-size: 0.95rem;
  }
} 

/* Navbar Styles (semantic classes) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(51,45,86,0.1);
  border-bottom: 1px solid #E3EEB2;
}
.navbar__container {
  max-width: 112rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar__brand-text {
  font-size: 2rem;
  font-weight: 800;
  color: #332D56;
  letter-spacing: 0.02em;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.navbar__link {
  color: #332D56;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar__link:hover {
  color: #71C0BB;
}
.navbar__dropdown-group {
  position: relative;
}
.navbar__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #332D56;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.navbar__dropdown-btn:hover, .navbar__dropdown-btn:focus {
  background: #E3EEB2;
  color: #332D56;
  outline: none;
}
.navbar__dropdown-icon {
  font-size: 1rem;
  transition: transform 0.2s;
}
.navbar__dropdown-menu {
  position: absolute;
  left: 0;
  top: 2.5rem;
  width: 14rem;
  border-radius: 1rem;
  border: 1px solid #E3EEB2;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(51,45,86,0.15);
  display: none;
  flex-direction: column;
  z-index: 30;
}
.navbar__dropdown-group:hover .navbar__dropdown-menu,
.navbar__dropdown-group:focus-within .navbar__dropdown-menu {
  display: flex;
}
.navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: #332D56;
  text-decoration: none;
  border-radius: 0.75rem 0.75rem 0 0;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}
.navbar__dropdown-link:hover {
  background: #E3EEB2;
  color: #332D56;
}
.navbar__dropdown-icon-med {
  color: #71C0BB;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__login {
  color: #332D56;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar__login:hover {
  color: #71C0BB;
}
.navbar__cta {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  background: #332D56;
  color: #fff;
  box-shadow: 0 2px 8px rgba(51,45,86,0.1);
  text-decoration: none;
  transition: background 0.2s;
}
.navbar__cta:hover {
  background: #4E6688;
}
.navbar__hamburger {
  background: none;
  border: none;
  color: #332D56;
  cursor: pointer;
  display: none;
}
.navbar__hamburger-icon {
  font-size: 2rem;
}
/* Mobile Menu Styles */
.navbar__mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.95);
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #332D56;
}
.navbar__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #332D56;
  cursor: pointer;
}
.navbar__mobile-close-icon {
  font-size: 2.5rem;
}
.navbar__mobile-link {
  color: #332D56;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar__mobile-link:hover {
  color: #71C0BB;
}
.navbar__mobile-link--cta {
  font-weight: 700;
}
.navbar__mobile-login {
  color: #332D56;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar__mobile-login:hover {
  color: #71C0BB;
}
.navbar__mobile-apply {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  background: #332D56;
  color: #fff;
  box-shadow: 0 2px 8px rgba(51,45,86,0.1);
  text-decoration: none;
  transition: background 0.2s;
}
.navbar__mobile-apply:hover {
  background: #4E6688;
}
.navbar__mobile-dropdown-group {
  position: relative;
}
.navbar__mobile-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #332D56;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.navbar__mobile-dropdown-btn:hover {
  color: #71C0BB;
}
.navbar__mobile-dropdown-icon {
  font-size: 1.25rem;
}
.navbar__mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.navbar__mobile-dropdown-link {
  color: #332D56;
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.navbar__mobile-dropdown-link:hover {
  color: #71C0BB;
}
@media (max-width: 1024px) {
  .navbar__nav, .navbar__actions {
    display: none;
  }
  .navbar__hamburger {
    display: block;
  }
}
@media (max-width: 1024px) {
  .navbar__mobile-menu {
    display: none !important;
  }
  .navbar__mobile-menu.active {
    display: flex !important;
    border: 2px solid red; /* DEBUG: Remove after confirming menu shows */
  }
}

/* Hero Section Styles (semantic classes) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  filter: blur(2px) brightness(0.95);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #332D56 90%, #4E6688 80%, #332D56 90%);
  opacity: 0.9;
  z-index: 10;
}
.hero__content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}
.hero__badge {
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #71C0BB;
  background: rgba(255,255,255,0.8);
  color: #332D56;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(51,45,86,0.1);
  backdrop-filter: blur(2px);
  display: inline-block;
}
.hero__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 8px rgba(51,45,86,0.3);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__title-highlight {
  color: #71C0BB;
}
.hero__desc {
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(51,45,86,0.2);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    width: auto;
  }
}
.hero__btn {
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 16px rgba(51,45,86,0.15);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  display: inline-block;
}
.hero__btn--primary {
  background: #332D56;
  color: #fff;
  border: none;
}
.hero__btn--primary:hover {
  background: #4E6688;
}
.hero__btn--secondary {
  background: rgba(255,255,255,0.9);
  color: #332D56;
  border: 2px solid #332D56;
}
.hero__btn--secondary:hover {
  background: #E3EEB2;
  color: #332D56;
}

/* Main CTA/FORM SECTION Styles */
.main-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .main-cta {
    flex-direction: row;
    gap: 4rem;
    padding: 6rem 2rem;
  }
}
.main-cta__form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-cta__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #332D56;
  margin-bottom: 1rem;
}
.main-cta__desc {
  font-size: 1.125rem;
  color: #332D56;
  margin-bottom: 2rem;
}
.main-cta__form-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(51,45,86,0.10);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.main-cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main-cta__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #71C0BB;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.main-cta__input:focus {
  border-color: #332D56;
  box-shadow: 0 0 0 2px #71C0BB33;
}
.main-cta__consent {
  display: flex;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #332D56;
  gap: 0.5rem;
}
.main-cta__checkbox {
  margin-top: 0.2rem;
}
.main-cta__privacy-link {
  color: #71C0BB;
  text-decoration: underline;
}
.main-cta__button {
  width: 100%;
  background: #332D56;
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 0;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
  cursor: pointer;
}
.main-cta__button:hover {
  background: #4E6688;
}
.main-cta__button-icon {
  margin-right: 0.5rem;
}
.main-cta__spots {
  text-align: center;
  color: #71C0BB;
  font-size: 0.95rem;
  margin-top: 1rem;
  font-weight: 500;
}
.main-cta__features-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-cta__features-card {
  background: #E3EEB2;
  border-radius: 1.5rem;
  border: 1px solid #71C0BB;
  padding: 2rem;
}
.main-cta__features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-cta__feature-item {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: #332D56;
  gap: 1rem;
}
.main-cta__feature-icon {
  color: #332D56;
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* WHY CHOOSE US SECTION Styles */
.why-choose {
  padding: 6rem 0;
  background: linear-gradient(135deg, #E3EEB2 0%, #71C0BB 100%);
}
.why-choose__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.why-choose__header {
  text-align: center;
  margin-bottom: 4rem;
}
.why-choose__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #332D56;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: none;
}
@media (min-width: 768px) {
  .why-choose__title {
    font-size: 3.5rem;
  }
}
.why-choose__title-highlight {
  color: #71C0BB;
}
.why-choose__desc {
  font-size: 1.25rem;
  color: #332D56;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  text-shadow: none;
}
.why-choose__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .why-choose__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-choose__features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-choose__feature-card {
  background: rgba(227, 238, 178, 0.9);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(113, 192, 187, 0.2);
  box-shadow: 0 4px 24px 0 rgba(51,45,86,0.10);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.why-choose__feature-card:hover {
  box-shadow: 0 12px 36px 0 rgba(51,45,86,0.18);
  transform: translateY(-6px) scale(1.04);
  border-color: #332D56;
}
.why-choose__feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E3EEB2, #71C0BB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 3px solid #332D56;
  transition: all 0.3s ease;
}
.why-choose__feature-icon {
  font-size: 2.5rem;
  color: #332D56;
}
.why-choose__feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #332D56;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.why-choose__feature-desc {
  font-size: 1rem;
  color: #332D56;
  margin-bottom: 0;
}

/* WHY CHOOSE Georgetown: Two-Column Vertical Card Layout */
.why-choose__container--vertical {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.why-choose__left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
}
.why-choose__right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 320px;
}
.why-choose__feature-vertical {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(51, 45, 86, 0.08);
  padding: 1.5rem 2rem;
  border: 1.5px solid #E3EEB2;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.why-choose__feature-vertical:hover {
  box-shadow: 0 8px 30px rgba(51, 45, 86, 0.12);
  border-color: #71C0BB;
}
.why-choose__feature-vertical-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  background: linear-gradient(135deg, #E3EEB2 60%, #71C0BB 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #332D56;
  box-shadow: 0 2px 8px rgba(51, 45, 86, 0.08);
}
.why-choose__feature-vertical-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-choose__feature-vertical-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #332D56;
  margin-bottom: 0.25rem;
}
.why-choose__feature-vertical-desc {
  font-size: 1rem;
  color: #4E6688;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .why-choose__container--vertical {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .why-choose__left, .why-choose__right {
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .why-choose__feature-vertical {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
  .why-choose__feature-vertical-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    font-size: 1.5rem;
  }
}

/* HOW IT WORKS SECTION Styles (semantic classes) */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(135deg, #4E6688 0%, #332D56 100%);
}
.how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.how-it-works__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #E3EEB2;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 8px rgba(51,45,86,0.2);
}
.how-it-works__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.how-it-works__tab {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #71C0BB;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
  font-size: 1rem;
  color: #332D56;
  font-weight: 600;
}
.how-it-works__tab:hover {
  background: rgba(113, 192, 187, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 45, 86, 0.1);
}
.how-it-works__tab.active, .how-it-works__tab.journey-tab.active {
  background: #E3EEB2;
  border-color: #E3EEB2;
  color: #332D56;
  box-shadow: 0 4px 12px rgba(51, 45, 86, 0.2);
}
.how-it-works__tab-label {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.how-it-works__tab-subtitle {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}
.how-it-works__content {
  position: relative;
}
.how-it-works__panel {
  display: none;
  animation: fadeInUp 0.5s ease;
}
.how-it-works__panel.active, .how-it-works__panel.journey-panel.active {
  display: block;
}
.how-it-works__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.how-it-works__step {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 200px;
  max-width: 250px;
  box-shadow: 0 4px 20px rgba(51, 45, 86, 0.08);
  border: 2px solid rgba(113, 192, 187, 0.3);
  transition: all 0.3s ease;
  position: relative;
}
.how-it-works__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(51, 45, 86, 0.12);
  border-color: #71C0BB;
}
.how-it-works__step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E3EEB2, #71C0BB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid #332D56;
  transition: all 0.3s ease;
  font-size: 2rem;
  color: #332D56;
}
.how-it-works__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #332D56;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.how-it-works__step-desc {
  color: #332D56;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}
.how-it-works__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #71C0BB;
  animation: pulse 2s infinite;
}
@media (max-width: 1024px) {
  .how-it-works__steps {
    gap: 0.75rem;
  }
  .how-it-works__step {
    min-width: 180px;
    padding: 1.5rem 1rem;
  }
  .how-it-works__step-icon {
    width: 60px;
    height: 60px;
  }
  .how-it-works__step-title {
    font-size: 1.1rem;
  }
  .how-it-works__step-desc {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  /* Modernized Timeline flow for How It Works section on mobile - flex alignment */
  .how-it-works__steps {
    position: relative;
    flex-direction: column !important;
    gap: 0.5rem;
    margin: 0 auto;
    width: 100%;
    padding-left: 0;
  }
  .how-it-works__steps:before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(113,192,187,0.7),
      rgba(113,192,187,0.7) 10px,
      rgba(51,45,86,0.15) 10px,
      rgba(51,45,86,0.15) 20px
    );
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 8px 0 rgba(113,192,187,0.15);
  }
  .how-it-works__step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: rgba(255,255,255,0.55);
    border-radius: 1.25rem;
    padding: 0.7rem 0.7rem 0.7rem 0.7rem !important;
    margin-bottom: 2.2rem;
    box-sizing: border-box;
    border: 1.5px solid #E3EEB2;
    box-shadow: 0 8px 32px 0 rgba(51,45,86,0.10);
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.2s;
    position: relative;
  }
  .how-it-works__step:before {
    content: '';
    position: absolute;
    left: 32px;
    top: 18px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #71C0BB 60%, #E3EEB2 100%);
    border: 3px solid #332D56;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 8px 0 rgba(113,192,187,0.18);
  }
  .how-it-works__step-icon {
    position: relative;
    left: 24px;
    top: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-bottom: 0;
    border: 2.5px solid #71C0BB;
    z-index: 3;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 4px 16px 0 rgba(113,192,187,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: box-shadow 0.2s;
    margin-right: 1.5rem;
  }
  .how-it-works__step-content {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .how-it-works__step-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: #332D56;
    letter-spacing: 0.01em;
  }
  .how-it-works__step-desc {
    font-size: 0.87rem;
    color: #4E6688;
    opacity: 0.95;
    font-weight: 500;
  }
  .how-it-works__arrow {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .main-cta {
    align-items: flex-start;
  }
  .main-cta__features-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .main-cta__features-card {
    margin-top: 18rem; /* Adjust this value as needed for best alignment */
  }
}

@media (max-width: 1023px) {
  .main-cta__features-card {
    margin-top: 2rem;
  }
}

/* Curriculum Section Modern Header */
.curriculum__header {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.curriculum__badge {
  display: inline-block;
  background: #71C0BB;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.4em 1.2em;
  margin-bottom: 0.25rem;
  box-shadow: 0 2px 8px rgba(51,45,86,0.08);
}
.curriculum__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #332D56;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: normal;
}
@media (min-width: 768px) {
  .curriculum__title {
    font-size: 2.7rem;
  }
}
.curriculum__desc {
  font-size: 1.1rem;
  color: #4E6688;
  margin: 0;
  margin-top: 0.5rem;
  max-width: 700px;
  line-height: 1.6;
}

/* Curriculum Section Cards Modern Grid */
.curriculum__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .curriculum__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.curriculum__card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(51,45,86,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #E3EEB2;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.curriculum__card:hover {
  border-color: #71C0BB;
  box-shadow: 0 12px 36px 0 rgba(113,192,187,0.18);
}
.curriculum__card-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}
.curriculum__card-content {
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
}
.curriculum__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #332D56;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .curriculum__card-img {
    height: 10rem;
  }
  .curriculum__card-content {
    padding: 1rem 0.75rem 0.75rem 0.75rem;
  }
  .curriculum__card-title {
    font-size: 1rem;
  }
}

/* FAQ Section Modern Styles */
.faq {
  background: #E3EEB2;
  padding: 6rem 0;
}
.faq__title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  color: #332D56;
  margin-bottom: 2.5rem;
}
.faq__list {
  max-width: 700px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.faq__item {
  border-bottom: 1.5px solid #d1d5db;
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  transition: background 0.2s;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: #332D56;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq__item.active .faq__question {
  color: #71C0BB;
}
.faq__icon {
  font-size: 1.5rem;
  color: #332D56;
  transition: transform 0.3s, color 0.2s;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
.faq__item.active .faq__icon {
  color: #71C0BB;
}
.faq__answer {
  color: #4E6688;
  font-size: 1.05rem;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 0 0;
  transition: max-height 0.4s cubic-bezier(.4,2,.3,1), opacity 0.3s, padding 0.3s;
}
.faq__item.active .faq__answer {
  max-height: 300px;
  opacity: 1;
  padding: 0.5rem 0 1.5rem 0;
}
.faq__toggle-more {
  display: block;
  margin: 2.5rem auto 0 auto;
  background: none;
  border: none;
  color: #332D56;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s;
}
.faq__toggle-more:hover {
  color: #4E6688;
}
.faq__toggle-icon {
  margin-left: 0.5rem;
  color: #71C0BB;
  font-size: 1.2em;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .faq__title {
    font-size: 1.5rem;
  }
  .faq__list {
    max-width: 98vw;
  }
  .faq__question {
    font-size: 1.05rem;
    padding: 1.1rem 0;
  }
  .faq__answer {
    font-size: 0.98rem;
  }
  .faq__toggle-more {
    font-size: 1rem;
  }
}

/* Footer CTA Section Modern Styles */
.footer-cta {
  position: relative;
  width: 100%;
  background: #332D56;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.footer-cta__circle {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: #71C0BB;
  border-radius: 50%;
  opacity: 0.8;
  z-index: 0;
}
.footer-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.footer-cta__pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background: #E3EEB2;
  border-radius: 3rem;
  border: 4px solid #71C0BB;
  box-shadow: 0 8px 32px 0 rgba(51,45,86,0.10);
  padding: 2.5rem 1.5rem;
}
@media (min-width: 900px) {
  .footer-cta__pill {
    flex-direction: row;
    justify-content: space-between;
    padding: 3.5rem 4rem;
    gap: 3rem;
  }
}
.footer-cta__icon {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  min-height: 5rem;
  background: #332D56;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(51,45,86,0.12);
  color: #E3EEB2;
  font-size: 2.2rem;
}
.footer-cta__icon i {
  color: #E3EEB2;
  font-size: 2.2rem;
}
.footer-cta__heading {
  flex: 1 1 40%;
  text-align: center;
}
@media (min-width: 900px) {
  .footer-cta__heading {
    text-align: left;
  }
}
.footer-cta__heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #332D56;
  margin: 0;
  line-height: 1.2;
}
.footer-cta__highlight {
  background: #71C0BB;
  color: #fff;
  border-radius: 0.5em;
  padding: 0.1em 0.5em;
  font-weight: 700;
}
.footer-cta__form-wrap {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 900px) {
  .footer-cta__form-wrap {
    align-items: flex-end;
  }
}
.footer-cta__form {
  width: 100%;
  max-width: 22rem;
  display: flex;
  position: relative;
}
.footer-cta__input {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 2px solid #332D56;
  background: #E3EEB2;
  color: #332D56;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(51, 45, 86, 0.08);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.footer-cta__input::placeholder {
  color: #332D56;
  opacity: 0.7;
}
.footer-cta__input:focus {
  border-color: #71C0BB;
  box-shadow: 0 0 0 2px #71C0BB33;
}
.footer-cta__button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #332D56;
  color: #E3EEB2;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(51,45,86,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.footer-cta__button:hover {
  background: #4E6688;
  color: #71C0BB;
}
@media (max-width: 600px) {
  .footer-cta__pill {
    padding: 1.5rem 0.5rem;
    border-radius: 2rem;
  }
  .footer-cta__icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.3rem;
  }
  .footer-cta__heading h2 {
    font-size: 1.2rem;
  }
  .footer-cta__form {
    max-width: 100%;
  }
  .footer-cta__button {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
} 

/* Footer Modern Styles */
.footer {
  background: #332D56;
  color: #E3EEB2;
  padding: 3rem 0 2rem 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
}
.footer__nav {
  display: flex;
  gap: 2.5rem;
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav-link {
  color: #E3EEB2;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.footer__nav-link:hover {
  color: #71C0BB;
}
.footer__logo-mission {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 900px) {
  .footer__logo-mission {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 0;
  }
}
.footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #71C0BB;
  margin-bottom: 0.25rem;
}
.footer__mission {
  color: #E3EEB2;
  font-size: 1rem;
  max-width: 18rem;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
@media (min-width: 900px) {
  .footer__contact {
    align-items: flex-end;
    text-align: right;
  }
}
.footer__contact-email {
  color: #71C0BB;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.footer__contact-email:hover {
  color: #E3EEB2;
}
.footer__contact-address,
.footer__contact-phone {
  margin-bottom: 0.25rem;
  color: #E3EEB2;
  font-size: 1rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: center;
}
@media (min-width: 900px) {
  .footer__social {
    justify-content: flex-end;
  }
}
.footer__social-icon {
  color: #E3EEB2;
  font-size: 1.25rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer__social-icon:hover {
  color: #71C0BB;
}
.footer__bottom {
  border-top: 1.5px solid #71C0BB;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
@media (min-width: 900px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__copyright {
  margin-bottom: 0.25rem;
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-link {
  color: #E3EEB2;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom-link:hover {
  color: #71C0BB;
}
@media (max-width: 600px) {
  .footer__main {
    gap: 1.5rem;
  }
  .footer__nav {
    gap: 1.2rem;
  }
  .footer__logo {
    font-size: 1.1rem;
  }
  .footer__mission {
    font-size: 0.95rem;
  }
  .footer__contact-email,
  .footer__contact-address,
  .footer__contact-phone {
    font-size: 0.95rem;
  }
  .footer__bottom {
    font-size: 0.9rem;
    gap: 0.5rem;
  }
}

/* Standardized section container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}
@media (max-width: 600px) {
  .section-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Remove or override redundant paddings from section-specific containers */
.why-choose__container,
.how-it-works__container,
.container {
  max-width: unset;
  margin: unset;
  padding: unset;
}

.footer__join-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #71C0BB, #332D56);
  color: #fff;
  font-weight: 700;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(51,45,86,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer__join-btn:hover {
  background: linear-gradient(135deg, #332D56, #71C0BB);
  color: #E3EEB2;
  transform: translateY(-2px) scale(1.03);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,2,.3,1), transform 0.7s cubic-bezier(.4,2,.3,1);
}
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Button click scale effect */
.btn-clicked {
  transform: scale(0.96);
  transition: transform 0.15s cubic-bezier(.4,2,.3,1);
}

/* Back to Top Button */
.back-to-top-btn {
  background: linear-gradient(135deg, #71C0BB, #332D56);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(51,45,86,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.back-to-top-btn:hover {
  background: linear-gradient(135deg, #332D56, #71C0BB);
  color: #E3EEB2;
  transform: scale(1.08);
}

/* Image Hover Zoom */
img.img-hover-zoom {
  transition: transform 0.4s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
}
img.img-hover-zoom:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(51,45,86,0.12);
}

/* Card Hover Outline Effect */
.card-hover-outline {
  transition: box-shadow 0.3s, border-color 0.3s;
  border: 2px solid transparent;
}
.card-hover-outline:hover {
  box-shadow: 0 8px 32px rgba(113,192,187,0.18);
  border-color: #71C0BB;
}

/* --- NAVBAR RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
  .navbar__nav, .navbar__actions {
    display: none !important;
  }
  .navbar__hamburger {
    display: block !important;
  }
  .navbar__mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #332D56;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    overflow-y: auto;
    padding-top: 4rem;
  }
  .navbar__mobile-menu.active {
    display: flex !important;
  }
}

/* --- HOW IT WORKS RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .how-it-works {
    padding: 2rem 0;
  }
  .how-it-works__steps {
    flex-direction: column !important;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
  }
  .how-it-works__step {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100%;
    padding: 1rem !important;
    box-sizing: border-box;
  }
  .how-it-works__arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
    align-self: center;
  }
}

/* Prevent horizontal scroll on mobile for How It Works */
.how-it-works {
  overflow-x: hidden;
}

/* Enhanced Google Translate Widget Toggle (site-wide) */
.navbar__translate {
  margin-left: 1rem;
  min-width: 120px;
  display: inline-block;
  position: relative;
}
.goog-te-gadget {
  font-family: inherit !important;
  font-size: 1rem !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.goog-te-combo {
  border-radius: 999px;
  padding: 0.35rem 1.2rem 0.35rem 2.2rem;
  border: 2px solid #71C0BB;
  background: #fff;
  color: #332D56;
  font-weight: 700;
  margin-left: 0;
  box-shadow: 0 2px 8px 0 rgba(113,192,187,0.10);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%234E6688" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.1em;
}
.goog-te-combo:focus, .goog-te-combo:hover {
  border-color: #332D56;
  box-shadow: 0 4px 16px 0 rgba(51,45,86,0.10);
  outline: none;
}
/* Hide Google branding for a cleaner look */
.goog-logo-link, .goog-te-gadget span {
  display: none !important;
}

/* Custom Language Dropdown Styles */
.custom-language-dropdown {
  position: relative;
  display: inline-block;
}
.language-toggle-btn {
  background: #fff;
  color: #332D56;
  border: 2px solid #71C0BB;
  border-radius: 999px;
  padding: 0.35rem 1.2rem 0.35rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(113,192,187,0.10);
  outline: none;
}
.language-toggle-btn:focus, .language-toggle-btn:hover {
  border-color: #332D56;
  box-shadow: 0 4px 16px 0 rgba(51,45,86,0.10);
}
.language-toggle-btn i.fa-globe {
  margin-right: 0.5rem;
  color: #4E6688;
}
.language-options {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 2px solid #71C0BB;
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(51, 45, 86, 0.10);
  z-index: 100;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  display: block;
}
.language-options[hidden] {
  display: none;
}
.language-option {
  padding: 0.5rem 1.5rem;
  color: #332D56;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: none;
  text-align: left;
}
.language-option[aria-selected="true"], .language-option:hover {
  background: #E3EEB2;
  color: #4E6688;
}
@media (max-width: 1024px) {
  .custom-language-dropdown {
    width: 100%;
  }
  .language-options {
    min-width: 100%;
    left: 0;
    right: 0;
  }
}

.guarantee-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
}
.guarantee-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1.5rem;
}
@media (min-width: 900px) {
  .guarantee-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
}
.guarantee-graphic {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}
.guarantee-content {
  flex: 1 1 0%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 1.2rem;
}
.guarantee-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-1);
  margin-bottom: 0.5rem;
}
.guarantee-desc {
  font-size: 1.15rem;
  color: var(--primary-2);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.guarantee-link {
  color: var(--primary-3);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.guarantee-link:hover {
  color: var(--primary-1);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .guarantee-section {
    padding: 2.2rem 0 1.5rem 0;
  }
  .guarantee-title {
    font-size: 1.3rem;
  }
  .guarantee-desc {
    font-size: 1rem;
  }
  .guarantee-graphic svg {
    width: 110px;
    height: 110px;
  }
}