.who-we-are-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 47px 60px;
  gap: 20px;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  position: relative;
}

.who-we-are-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  width: 100%;
  max-width: 1392px;
  margin: 0 auto;
}

.who-we-are-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 30px;
  width: 100%;
}

.who-we-are-title {
  width: 100%;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  color: #1a1a1a;
  margin: 0;
  position: relative;
  letter-spacing: -0.02em;
}

.who-we-are-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c41e3a 0%, #e63946 100%);
  border-radius: 2px;
}

.who-we-are-subtitle {
  width: 100%;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #333333;
  margin: 0;
}

.who-we-are-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
  gap: 24px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.who-we-are-heading {
  width: 100%;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
  color: #c41e3a;
  margin: 0;
  letter-spacing: -0.01em;
}

.who-we-are-description {
  width: 100%;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .who-we-are-section {
    padding: 100px 40px;
  }

  .who-we-are-container {
    gap: 430px;
  }

  .who-we-are-title {
    font-size: 42px;
  }

  .who-we-are-heading {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .who-we-are-container {
    flex-direction: column;
    gap: 40px;
  }

  .who-we-are-left,
  .who-we-are-right {
    max-width: 100%;
  }
}

/* Add media query for desktop to set content text to 58% and image to 42% */
@media (min-width: 993px) {
  .section-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .content-text {
    flex: 0 0 58%;
    max-width: 58%;
  }

  .content-image {
    flex: 0 0 42%;
    max-width: 42%;
  }
}

@media (max-width: 768px) {
  .who-we-are-section {
    padding: 80px 30px;
  }

  .who-we-are-title {
    font-size: 36px;
  }

  .who-we-are-title::after {
    width: 50px;
    height: 3px;
    bottom: -10px;
  }

  .who-we-are-heading {
    font-size: 24px;
  }

  .who-we-are-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .who-we-are-right {
    padding: 35px;
  }
}

@media (max-width: 480px) {
  .who-we-are-section {
    padding: 60px 20px;
  }

  .who-we-are-title {
    font-size: 32px;
  }

  .who-we-are-title::after {
    width: 40px;
    height: 2px;
    bottom: -8px;
  }

  .who-we-are-heading {
    font-size: 22px;
  }

  .who-we-are-right {
    padding: 25px 20px;
  }
}
