.about-content {
  width: 100%;
  max-width: 1264px;
  margin: 0 auto;
}

.about-hero {
  background-image: url('../images/about/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  min-height: 500px;
}


.about-hero-content h1 {
  color: var(--primary-blue);
  font-size: clamp(36px, 3.24vw, 56px); /* 56px / 1728px = 3.24vw */
  font-weight: 700;
  margin-bottom: clamp(24px, 1.85vw, 32px);
  line-height: 1.2;
}

.about-hero-content p {
  color: var(--text-gray, #302E2F);
  font-size: clamp(18px, 1.39vw, 24px); /* 24px / 1728px = 1.39vw */
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin: 0;
}

.promise-hero {
  background-image: url('../images/about/hero-2.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 785px;
  text-align: left;
  color: white;
}

.promise-hero-content h2 {
  font-size: clamp(44px, 3.7vw, 64px); /* 64px / 1728px = 3.7vw */
  font-weight: 700;
  margin-bottom: clamp(16px, 1.39vw, 24px);
  text-transform: uppercase;
}

.promise-hero-content p {
  font-size: clamp(32px, 2.78vw, 48px); /* 48px / 1728px = 2.78vw */
  font-weight: 400;
  line-height: 1.3;
}

.origin-story {
  padding: clamp(60px, 6.94vw, 120px) clamp(20px, 2.31vw, 40px);
}

.origin-story-content h2 {
  color: var(--primary-blue);
  font-size: clamp(44px, 3.7vw, 64px); /* 64px / 1728px = 3.7vw */
  font-weight: 700;
  margin-bottom: clamp(24px, 1.85vw, 32px);
}

.origin-story-content p {
  color: var(--text-gray, #302E2F);
  font-size: clamp(18px, 1.39vw, 24px); /* 24px / 1728px = 1.39vw */
  font-weight: 400;
  line-height: 1.6;
}

/* Take Survey Section */
.take-survey {
  padding: clamp(60px, 6.94vw, 120px) clamp(20px, 2.31vw, 40px);
  text-align: center;
}

.take-survey p {
  color: var(--text-gray, #302E2F);
  font-size: clamp(18px, 1.39vw, 24px); /* 24px / 1728px = 1.39vw */
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto clamp(32px, 2.31vw, 40px);
}

.take-survey .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-blue);
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  width: clamp(300px, 20.66vw, 357px); /* 357px / 1728px = 20.66vw */
  height: clamp(60px, 4.4vw, 76px); /* 76px / 1728px = 4.4vw */
  font-size: clamp(18px, 1.39vw, 24px);
  transition: background-color 0.3s ease;
}

.take-survey .btn:hover {
  background-color: #001229; /* A darker shade of blue */
}

/* Team Section */
.team-section {
    padding: clamp(60px, 6.94vw, 120px) 0;
    padding-top: 0;
}

.team-section h2 {
    color: var(--primary-blue);
    font-size: clamp(44px, 3.7vw, 64px); /* 64px / 1728px = 3.7vw */
    font-weight: 700;
    margin-bottom: clamp(16px, 1.16vw, 20px);
}

.team-section > .about-content > p {
    color: var(--text-gray, #302E2F);
    font-size: clamp(18px, 1.39vw, 24px); /* 24px / 1728px = 1.39vw */
    margin-bottom: clamp(40px, 3.47vw, 60px);
}

.team-cards {
    display: flex;
    justify-content: space-between;
    gap: clamp(20px, 2.31vw, 40px);
    flex-wrap: wrap;
}

.team-card {
    width: clamp(216px, 13.89vw, 240px); /* From 200px */
    text-align: center;
}

.team-card-image {
    height: 345px; /* From 287px, to maintain aspect ratio */
    padding: clamp(10px, 0.74vw, 13px);
    border-radius: 24px;
    box-shadow: 0px 3.66px 64.31px 0px #00000026;
    overflow: hidden;
    margin-bottom: clamp(16px, 1.16vw, 24px);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.team-member-info {
    padding: 0;
}

.team-member-info h3 {
    color: var(--primary-blue);
    font-size: clamp(20px, 1.62vw, 28px); /* From 32px */
    font-weight: 700;
    margin-bottom: 8px;
}

.team-member-info p {
    color: var(--text-gray, #302E2F);
    font-size: clamp(16px, 1.16vw, 20px); /* From 24px */
    font-weight: 400;
    line-height: 1.4;
}

