/* Global CSS */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
  font-family: 'Figtree', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

/* CSS Variables */
:root {
  /* Colors */
  --color-cyan-14: #064034;
  --color-yellow-36: #8EB205;
  --color-grey-20: #333333;
  --color-grey-40: #666666;
  --color-white: #FDFDFD;
  --color-light-bg: #f8f8f8;
  
  /* Font Families */
  --meterbolic-figtree-regular-font-family: "Figtree", Helvetica;
  --meterbolic-figtree-bold-font-family: "Figtree-Bold", Helvetica;
  --meterbolic-arial-bold-font-family: "Arial-Bold", Helvetica;
  
  /* Font Sizes */
  --meterbolic-semantic-heading-1-font-size: 52px;
  --meterbolic-semantic-heading-2-font-size: 42px;
  --meterbolic-semantic-heading-3-font-size: 20px;
  --meterbolic-figtree-regular-font-size: 17px;
  --meterbolic-arial-bold-font-size: 16px;
  
  /* Font Weights */
  --meterbolic-semantic-heading-1-font-weight: 700;
  --meterbolic-semantic-heading-2-font-weight: 700;
  --meterbolic-semantic-heading-3-font-weight: 600;
  --meterbolic-figtree-regular-font-weight: 400;
  --meterbolic-arial-bold-font-weight: 700;
  
  /* Line Heights */
  --meterbolic-semantic-heading-1-line-height: 1.2;
  --meterbolic-semantic-heading-2-line-height: 1.3;
  --meterbolic-semantic-heading-3-line-height: 1.4;
  --meterbolic-figtree-regular-line-height: 1.7;
  --meterbolic-arial-bold-line-height: normal;
}

/* Section Styles */
.section {
  width: 100%;
  padding: 120px 90px;
  position: relative;
}

.section-light {
  background: var(--color-white);
}

.section-dark {
  background: var(--color-cyan-14);
}

.section-heading-wrapper {
  margin-bottom: 60px;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: var(--color-yellow-36);
  color: var(--color-white);
  font-family: var(--meterbolic-figtree-regular-font-family);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 23.80px;
  letter-spacing: 0.70px;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: 700;
  color: var(--color-cyan-14);
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.3;
}

.section-dark .section-heading {
  color: var(--color-white);
}

.section-subheading {
  font-family: var(--meterbolic-figtree-regular-font-family);
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
  color: var(--color-grey-20);
  line-height: 1.6;
}

.section-dark .section-subheading {
  color: var(--color-white);
}

/* ===== Mission Section Layout ===== */
.mission .mission-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid for equal height columns */
.mission .mission-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.mission .mission-content,
.mission .mission-graphic {
  min-width: 0;
}

.mission .section-heading-wrapper {
  margin-bottom: 28px;
  text-align: left !important;
}

.mission .mission-heading {
  font-size: 42px;
  line-height: 1.3;
  margin: 0;
  color: #064034;
  text-align: left !important;
}

.mission .mission-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.95;
  color: var(--color-grey-20);
}

/* Right image aligned and same height */
.mission .mission-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission .mission-img {
  width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
}

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

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

.statistic-card {
  background: var(--color-white);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.statistic-card:hover {
  transform: translateY(-5px);
}

.statistic-value {
  font-family: var(--meterbolic-figtree-regular-font-family);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-yellow-36);
  line-height: 1;
  margin-bottom: 20px;
}

.statistic-description {
  font-family: var(--meterbolic-figtree-regular-font-family);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-grey-20);
}

/* Timeline Section */
.timeline {
  padding: 120px 0;
}

.timeline-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-content {
  position: relative;
  padding-left: 100px;
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: flex-start;
}

.timeline-line {
  position: absolute;
  left: -60px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #8EB205 0%, #064034 100%);
  border-radius: 2px;
  z-index: 0;
}

.timeline-marker {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  border: 3px solid #8EB205;
  z-index: 1;
}

.timeline-card {
  background: #064034;
  box-shadow: 0px 20px 40px rgba(6, 64, 52, 0.10);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  margin-left: 40px;
  position: relative;
  z-index: 2;
}

.timeline-year {
  color: #8EB205;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-title {
  color: #8EB205;
  font-size: 24px;
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: 700;
  margin-bottom: 15px;
}

.timeline-description {
  color: white;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Science Section */
.science {
  padding: 120px 0;
}

.science-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.science-content {
  flex: 1;
  text-align: left;
}

.science-content .section-label {
  background: #7A9B04;
  color: #064034;
  margin-bottom: 20px;
}

.science-content .section-heading {
  color: white;
  text-align: left;
  margin-bottom: 30px;
}

.science-text {
  font-size: 18px;
  line-height: 1.7;
  color: white;
  margin-bottom: 20px;
}

.science-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.science-graphic img {
  width: 80%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

/* Team & Advisors Section - PERFECTLY MATCHING OTHER SECTIONS */
.team-advisors {
  padding: 120px 0;
  background: var(--color-cyan-14);
}

.team-advisors-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-advisors-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-advisors-section {
  margin-bottom: 80px;
}

.team-advisors-section:last-child {
  margin-bottom: 0;
}

.team-advisors-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.subsection-heading {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

/* Professional grid layout matching advisor cards */
.team-advisors-grid {
  display: grid;
  grid-template-columns: repeat(4, 282px);
  gap: 30px;
  justify-content: center;
  justify-items: center;
}

.team-advisors-card {
  background: white;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 282px;
  transition: transform 0.3s ease;
}

.team-advisors-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(142, 178, 5, 0.10);
}

.team-advisors-card:hover {
  transform: translateY(-5px);
}

.team-advisors-card3 {
  background: white;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 100%;
  max-width: 282px;
  transition: transform 0.3s ease;
}

.team-advisors-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  outline: 2px solid rgba(142, 178, 5, 0.10);
  outline-offset: -2px;
}

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

.team-advisors-name {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 22px;
  font-weight: 700;
  color: #064034;
  margin-bottom: 15px;
}

.team-advisors-role {
  color: #8EB205;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-advisors-description {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

/* Investors Section */
.investors {
  padding: 120px 0;
}

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

.investors-card {
  background: white;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.investors-card .section-label {
  margin-bottom: 20px;
}

.investors-card .section-heading {
  margin-bottom: 20px;
}

.investors-card .section-subheading {
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.investors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.investors-logos img {
  opacity: 0.8;
  max-height: 60px;
  transition: all 0.3s ease;
}

.investors-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.investors-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #8EB205 0%, #064034 100%);
}

/* CTA Section */
.cta {
  padding: 120px 0;
}

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

.cta-card {
  background: white;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card .section-label {
  margin-bottom: 20px;
}

.cta-card .section-heading {
  margin-bottom: 20px;
}

.cta-card .section-subheading {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: #8EB205;
  color: white;
}

.cta-button.secondary {
  background: white;
  color: #064034;
  border: 2px solid #064034;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Section - CENTERED LAYOUT */
.contact {
  padding: 80px 0;
  margin-bottom: 10%;
}

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

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

/* Centered contact grid */
.contact-grid-centered {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card-centered {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2.50px);
  min-width: 300px;
  flex: 1;
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 30px;
  color: white;
}

.contact-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-detail {
  color: white;
  font-size: 18px;
  line-height: 1.7;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-tag {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-tag:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

/* =========================
   ABOUT PAGE RESPONSIVE MEDIA QUERIES
   Professional responsive design matching how-it-works page
========================= */

/* Large tablets and small desktops (993px - 1200px) */
@media (max-width: 1200px) {
  .mission .mission-container,
  .statistics-container,
  .timeline-container,
  .science-container,
  .team-advisors-container,
  .investors-container,
  .cta-container,
  .contact-container {
    max-width: 1000px;
    padding: 0 40px;
  }
  
  .mission .mission-grid {
    gap: 40px;
  }
  
  .statistics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .team-advisors-grid {
    grid-template-columns: repeat(3, 282px);
    gap: 25px;
  }
  
  .mission .mission-heading {
    font-size: 36px;
  }
  
  .mission .mission-text {
    font-size: 17px;
  }
  
  .science-container {
    gap: 40px;
  }
  
  .science-text {
    font-size: 17px;
  }
  
  .investors-logos {
    gap: 40px;
  }
  
  .investors-logos img {
    max-height: 50px;
  }
}

/* Tablets (769px - 992px) */
@media (max-width: 992px) {
  .section {
    padding: 80px 40px;
  }
  
  .section-heading {
    font-size: 36px;
  }
  
  .section-subheading {
    font-size: 18px;
  }
  
  /* Mission Section */
  .mission .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .mission .mission-content {
    order: 1;
  }
  
  .mission .mission-graphic {
    order: 2;
  }
  
  .mission .section-heading-wrapper {
    text-align: center !important;
  }
  
  .mission .mission-heading {
    text-align: center !important;
    font-size: 32px;
  }
  
  .mission .mission-text {
    text-align: center;
    font-size: 16px;
  }
  
  .mission .mission-img {
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Statistics Section */
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .statistic-card {
    padding: 40px 20px;
  }
  
  .statistic-value {
    font-size: 42px;
  }
  
  .statistic-description {
    font-size: 16px;
  }
  
  /* Timeline Section */
  .timeline-content {
    padding-left: 60px;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .timeline-marker {
    left: -50px;
  }
  
  .timeline-card {
    padding: 30px 25px;
    margin-left: 30px;
  }
  
  .timeline-title {
    font-size: 22px;
  }
  
  .timeline-description {
    font-size: 16px;
  }
  
  /* Science Section */
  .science-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .science-content {
    text-align: center;
  }
  
  .science-content .section-heading {
    text-align: center;
  }
  
  .science-text {
    text-align: center;
    font-size: 16px;
  }
  
  .science-graphic img {
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Team & Advisors Section */
  .team-advisors-grid {
    grid-template-columns: repeat(2, 282px);
    gap: 25px;
  }
  
  .team-advisors-card3 {
    margin: 0;
  }
  
  .team-advisors-name {
    font-size: 20px;
  }
  
  .team-advisors-description {
    font-size: 15px;
  }
  
  /* Investors Section */
  .investors-card {
    padding: 50px 40px;
  }
  
  .investors-logos {
    gap: 30px;
  }
  
  .investors-logos img {
    max-height: 45px;
  }
  
  /* CTA Section */
  .cta-card {
    padding: 50px 40px;
  }
  
  .cta-buttons {
    gap: 15px;
  }
  
  .cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  /* Contact Section */
  .contact-grid-centered {
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    gap: 25px;
  }
  
  .contact-card-centered {
    width: 100%;
    max-width: 400px;
    padding: 50px 30px;
  }
}

/* Mobile Devices (481px - 768px) */
@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
  
  .section-heading {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .section-subheading {
    font-size: 17px;
    line-height: 1.5;
  }
  
  /* Mission Section */
  .mission .mission-heading {
    font-size: 28px;
  }
  
  .mission .mission-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .mission .mission-img {
    max-width: 300px;
  }
  
  /* Statistics Section */
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .statistic-card {
    padding: 35px 20px;
  }
  
  .statistic-value {
    font-size: 38px;
    margin-bottom: 15px;
  }
  
  .statistic-description {
    font-size: 15px;
  }
  
  /* Timeline Section */
  .timeline-content {
    padding-left: 40px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-marker {
    left: -30px;
    width: 16px;
    height: 16px;
  }
  
  .timeline-item {
    margin-bottom: 60px;
  }
  
  .timeline-card {
    padding: 25px 20px;
    margin-left: 20px;
  }
  
  .timeline-year {
    font-size: 15px;
  }
  
  .timeline-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .timeline-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Science Section */
  .science .science-heading {
    font-size: 28px;
  }
  
  .science-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .science-graphic img {
    max-width: 300px;
  }
  
  /* Team & Advisors Section */
  .team-advisors-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .team-advisors-card,
  .team-advisors-card3 {
    max-width: 100%;
    padding: 25px 20px;
  }
  
  .team-advisors-image {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }
  
  .team-advisors-name {
    font-size: 19px;
    margin-bottom: 12px;
  }
  
  .team-advisors-role {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .team-advisors-description {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Investors Section */
  .investors-card {
    padding: 40px 25px;
  }
  
  .investors-logos {
    gap: 25px;
    margin-top: 30px;
  }
  
  .investors-logos img {
    max-height: 35px;
  }
  
  /* CTA Section */
  .cta-card {
    padding: 40px 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 16px 32px;
    font-size: 16px;
  }
  
  /* Contact Section */
  .contact-card-centered {
    padding: 40px 25px;
    min-width: auto;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }
  
  .contact-icon i {
    font-size: 25px;
  }
  
  .contact-title {
    font-size: 18px;
  }
  
  .contact-detail {
    font-size: 16px;
  }
  
  .social-tag {
    font-size: 13px;
    padding: 7px 10px;
  }
}

/* Small Mobile Devices (375px - 480px) */
@media (max-width: 480px) {
  .section {
    padding: 50px 15px;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .section-subheading {
    font-size: 16px;
  }
  
  .section-label {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  /* Mission Section */
  .mission .mission-heading {
    font-size: 24px;
  }
  
  .mission .mission-text {
    font-size: 14px;
  }
  
  .mission .mission-img {
    max-width: 250px;
  }
  
  /* Statistics Section */
  .statistic-card {
    padding: 30px 15px;
  }
  
  .statistic-value {
    font-size: 32px;
  }
  
  .statistic-description {
    font-size: 14px;
  }
  
  /* Timeline Section */
  .timeline-content {
    padding-left: 30px;
  }
  
  .timeline-line {
    left: 15px;
  }
  
  .timeline-marker {
    left: -25px;
    width: 14px;
    height: 14px;
  }
  
  .timeline-item {
    margin-bottom: 50px;
  }
  
  .timeline-card {
    padding: 20px 15px;
    margin-left: 15px;
  }
  
  .timeline-year {
    font-size: 14px;
  }
  
  .timeline-title {
    font-size: 18px;
  }
  
  .timeline-description {
    font-size: 14px;
  }
  
  /* Science Section */
  .science .science-heading {
    font-size: 24px;
  }
  
  .science-text {
    font-size: 14px;
  }
  
  .science-graphic img {
    max-width: 250px;
  }
  
  /* Team & Advisors Section */
  .team-advisors-grid {
    gap: 15px;
  }
  
  .team-advisors-card,
  .team-advisors-card3 {
    padding: 20px 15px;
  }
  
  .team-advisors-image {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }
  
  .team-advisors-name {
    font-size: 17px;
  }
  
  .team-advisors-role {
    font-size: 14px;
  }
  
  .team-advisors-description {
    font-size: 13px;
  }
  
  /* Investors Section */
  .investors-card {
    padding: 30px 20px;
  }
  
  .investors-logos {
    gap: 20px;
    margin-top: 25px;
  }
  
  .investors-logos img {
    max-height: 30px;
  }
  
  /* CTA Section */
  .cta-card {
    padding: 30px 20px;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  /* Contact Section */
  .contact-grid-centered {
    gap: 20px;
  }
  
  .contact-card-centered {
    padding: 30px 20px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  
  .contact-icon i {
    font-size: 22px;
  }
  
  .contact-title {
    font-size: 17px;
  }
  
  .contact-detail {
    font-size: 15px;
  }
  
  .social-tag {
    font-size: 12px;
    padding: 6px 8px;
  }
}

/* Extra Small Mobile Devices (below 374px) */
@media (max-width: 374px) {
  .section {
    padding: 40px 12px;
  }
  
  .section-heading {
    font-size: 24px;
  }
  
  .section-subheading {
    font-size: 15px;
  }
  
  /* Mission Section */
  .mission .mission-heading {
    font-size: 22px;
  }
  
  .mission .mission-img {
    max-width: 200px;
  }
  
  /* Timeline Section */
  .timeline-content {
    padding-left: 25px;
  }
  
  .timeline-line {
    left: 12px;
  }
  
  .timeline-marker {
    left: -20px;
  }
  
  /* Team & Advisors Section */
  .team-advisors-image {
    width: 100px;
    height: 100px;
  }
  
  /* CTA Section */
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
  .section {
    padding: 40px 20px;
  }
  
  .team-advisors-section {
    margin-bottom: 60px;
  }
  
  .team-advisors-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mission-img,
  .science-graphic img,
  .team-advisors-image img,
  .investors-logos img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .statistic-card,
  .team-advisors-card,
  .team-advisors-card3,
  .investors-logos img,
  .cta-button,
  .social-tag {
    transition: none;
  }
  
  .statistic-card:hover,
  .team-advisors-card:hover,
  .team-advisors-card3:hover,
  .investors-logos img:hover,
  .cta-button:hover,
  .social-tag:hover {
    transform: none;
  }
}