/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  color: #f5f5f5;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

/* Header */
/* Header Navigation */
.navbar {
  background: radial-gradient(circle at top left, #001f2f, #000);
  padding: 24px 0; /* tighter vertical space */
}

.navbar.scrolled {
  background: radial-gradient(circle at top left, #001f2f, #000);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Logo styling --- */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px; /* as requested */
  width: auto;
  object-fit: contain;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* --- Navigation Links --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #00ffe0;
}

.main-nav a.active {
  color: #00ffe0;
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ffe0;
  border-radius: 2px;
}

/* --- CTA Button --- */
.nav-cta {
  background: rgba(0, 255, 224, 0.1);
  color: #00ffe0 !important;
  padding: 8px 18px; /* smaller & balanced */
  font-size: 0.85rem;
  border-radius: 24px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0, 255, 224, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 255, 224, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(0, 255, 224, 0.15);
  box-shadow: 0 0 12px 2px rgba(0, 255, 224, 0.6), 0 0 20px rgba(0, 255, 224, 0.3);
  color: #ffffff !important;
  border-color: #00ffe0;
}


/* === About Hero Section === */
.hero-banner.no-image {
  padding: 120px 0;
  background: radial-gradient(circle at top left, #001f2f, #000);
  color: #fff;
  text-align: center;
}

.hero-text-center {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-banner.no-image .section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-banner.no-image .section-intro {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-banner.no-image .section-intro strong {
  color: #00ffe0;
  font-weight: 700;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner.no-image .hero-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 224, 0.2);
}

.hero-banner.no-image .hero-cta:hover {
  background: #00ffe0;
  color: #000;
  transform: translateY(-2px);
}


.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.scroll-arrow {
  font-size: 0.9rem;
  color: #00ffe0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;         /* REMOVE underline */
  background: none;              /* ENSURE no background */
  border: none;                  /* ENSURE no border */
  padding: 0;                    /* REMOVE extra spacing */
  animation: bounceDown 2s infinite;
}

.scroll-arrow i {
  transition: transform 0.3s ease;
  line-height: 1;                /* REMOVE space below icon */
  font-size: 1rem;
}

.scroll-arrow .second {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: -6px;              /* Tighter spacing between arrows */
}

.scroll-arrow:hover i {
  transform: translateY(3px);
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}



/* === Our Mission Section === */
.mission-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.mission-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.mission-content {
  flex: 1;
  min-width: 300px;
}

.mission-section .section-title {
  font-size: 2.8rem;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.mission-section .section-intro {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 650px;
}

.mission-section .section-intro .highlight,
.mission-section .section-intro strong {
  color: #00ffe0;
  font-weight: 600;
}

.mission-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 255, 224, 0.2));
  border-radius: 16px;
}

/* Optional decorative floating glow */
.mission-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: #111;
  filter: blur(40px);
  z-index: 0;
}



/* === Our Vision Section === */
.vision-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.vision-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 60px;
}

.vision-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 0 30px rgba(0, 255, 224, 0.15));
}

.vision-content {
  flex: 1;
  min-width: 300px;
}

.vision-section .section-title {
  font-size: 2.8rem;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.vision-section .section-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ccc;
  max-width: 650px;
}

.vision-section .section-intro strong {
  color: #00ffe0;
  font-weight: 600;
}

/* Decorative glow (optional) */
.vision-section::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,255,224,0.2), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}



.values {
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  padding: 100px 0;
  color: #f5f5f5;
}

.values .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  display: block;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 224, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.06);
  min-height: 340px;
}

.value-card:hover {
  background: linear-gradient(to bottom right, #00242a, #000);
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #00ffe0, #00b8ff);
  color: #111;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(0, 255, 224, 0.3);
}

.value-card h3 {
  font-size: 1.2rem;
  color: #00ffe0;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Methodology Section */
.methodology.section {
  background: radial-gradient(circle at center, #001a20, #000);
  color: #fff;
  padding: 100px 0;
}

.methodology .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.method-step {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 224, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.06);
}

.method-step:hover {
  background: linear-gradient(to bottom right, #00242a, #000);
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.15);
}

.step-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(to bottom right, #00ffe0, #00b8ff);
  color: #111;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(0, 255, 224, 0.3);
}

.method-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #00ffe0;
  font-weight: 600;
}

.method-step p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* === Sustainability Section === */
.vision-sustainability.section {
  background: radial-gradient(circle at center, #001a20, #000);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.vs-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.vs-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vs-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.12);
  transition: transform 0.4s ease;
}

.vs-image img:hover {
  transform: scale(1.03);
}

.vs-text {
  flex: 1;
  min-width: 320px;
  max-width: 620px;
}

.vs-text .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
}

.vs-text p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.vs-text .highlight {
  color: #00ffe0;
  font-weight: 600;
}



















/* Footer */
.footer {
  background: radial-gradient(circle at top left, #001f2f, #000);
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 240px;
}

.footer-title {
  font-size: 1.2rem;
  color: #00ffe0;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00ffe0;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffe0;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 255, 224, 0.1);
  color: #00ffe0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 255, 224, 0.3);
}

.social-icons a:hover {
  background-color: #00ffe0;
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.5);
}

.footer-newsletter {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 30px;
  border: none;
  background: #111;
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: #888;
}

.footer-newsletter button {
  padding: 10px 20px;
  background: #00ffe0;
  color: #111;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: #00b8ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.85rem;
}

.footer-bottom hr {
  border: 0;
  height: 1px;
  background: rgba(0, 255, 224, 0.15);
  margin-bottom: 20px;
}

/* Chatbase bubble button */
#chatbase-bubble-button {
  background: radial-gradient(circle at top left, #001f2f, #000) !important;
  border: 2px solid #00ffe0 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 20px rgba(0, 255, 224, 0.2) !important;
  transition: all 0.3s ease !important;
  z-index: 9999 !important;
}

#chatbase-bubble-button:hover {
  transform: scale(1.1);
  background: radial-gradient(circle at center, #003f48, #000) !important;
  box-shadow: 0 0 30px rgba(0, 255, 224, 0.4) !important;
}

/* Make inner SVG icon glow slightly */
#chatbase-bubble-button svg {
  filter: drop-shadow(0 0 5px #00ffe0);
  width: 32px;
  height: 32px;
}

/* Chat bubble container (optional if you want to tweak that) */
#chatbase-message-bubbles {
  background: #001f2f !important;
  border-radius: 12px !important;
  box-shadow: 0 0 15px rgba(0, 255, 224, 0.15) !important;
  color: #fff !important;
  font-family: 'Open Sans', sans-serif;
}

/* Close button on chat bubble */
#chatbase-message-bubbles > div {
  background-color: #00ffe0 !important;
  color: #111 !important;
  font-weight: bold;
  font-size: 12px !important;
}
@media (max-width: 768px) {
  #chatbase-bubble-button {
    width: 72px !important;
    height: 72px !important;
  }

  #chatbase-bubble-button svg {
    width: 40px !important;
    height: 40px !important;
  }
}








/* === Mobile Header Styles === */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background: #00ffe0;
  transition: all 0.3s ease;
}

/* Toggle Animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 320px;
    background: #000;
    padding: 80px 24px 40px;
    box-shadow: -2px 0 10px rgba(0, 255, 224, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 0;
    margin-bottom: 40px;
    list-style: none;
  }

  .main-nav a.nav-link {
    display: inline-block;
    position: relative;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f5f5f5;
    border: none;
    text-decoration: none;
  }

  .main-nav a.nav-link.active {
    color: #00ffe0;
  }

  .main-nav a.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00ffe0;
  }

  .nav-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-weight: 600;
    color: #00ffe0;
    border: 2px solid #00ffe0;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .nav-cta:hover {
    background: #00ffe0;
    color: #000;
  }
}


@media (max-width: 992px) {
  .hero-banner.no-image {
    padding: 100px 0;
  }

  .hero-banner.no-image .section-title {
    font-size: 2.4rem;
  }

  .hero-banner.no-image .section-intro {
    font-size: 1.1rem;
  }

  .hero-banner.no-image .hero-cta {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .hero-banner.no-image {
    padding: 80px 0;
  }

  .hero-banner.no-image .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-banner.no-image .section-intro {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-banner.no-image .hero-cta {
    width: 90%;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
  }

  .scroll-arrow {
    font-size: 0.85rem;
  }
}


@media (max-width: 992px) {
  .mission-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .mission-content, .mission-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mission-section .section-title {
    font-size: 2.2rem;
  }

  .mission-section .section-intro {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .mission-image img {
    max-width: 85%;
  }
}

@media (max-width: 576px) {
  .mission-section {
    padding: 80px 0;
  }

  .mission-section .section-title {
    font-size: 1.8rem;
  }

  .mission-section .section-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .mission-image img {
    max-width: 100%;
    border-radius: 12px;
  }
}


@media (max-width: 992px) {
  .vision-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .vision-content, .vision-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .vision-section .section-title {
    font-size: 2.2rem;
  }

  .vision-section .section-intro {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .vision-image img {
    max-width: 85%;
  }
}

@media (max-width: 576px) {
  .vision-section {
    padding: 80px 0;
  }

  .vision-section .section-title {
    font-size: 1.8rem;
  }

  .vision-section .section-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .vision-image img {
    max-width: 100%;
    border-radius: 12px;
  }
}



@media (max-width: 992px) {
  .values .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .value-card {
    padding: 32px 24px;
    min-height: auto;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .values {
    padding: 80px 0;
  }

  .values .section-title {
    font-size: 1.8rem;
  }

  .value-grid {
    grid-template-columns: 1fr; /* stack the cards */
    gap: 20px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .value-card {
    padding: 28px 20px;
  }
}



@media (max-width: 992px) {
  .methodology .section-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .method-step {
    padding: 32px 24px;
  }

  .method-step h3 {
    font-size: 1.1rem;
  }

  .method-step p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .methodology.section {
    padding: 80px 0;
  }

  .methodology .section-title {
    font-size: 1.8rem;
  }

  .methodology-grid {
    grid-template-columns: 1fr; /* Stack steps vertically */
    gap: 24px;
    margin-top: 40px;
  }

  .method-step {
    padding: 28px 20px;
  }

  .step-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .method-step h3 {
    font-size: 1.05rem;
  }
}


@media (max-width: 992px) {
  .vs-text .section-title {
    font-size: 2rem;
  }

  .vs-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .vs-flex {
    flex-direction: column;
    text-align: center;
  }

  .vs-text {
    max-width: 100%;
    padding: 0 20px;
  }

  .vs-image {
    order: -1; /* Move image above text on mobile */
    margin-bottom: 30px;
  }

  .vs-text .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .vs-text p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
}
