.about-main-container {
  max-width: 1168px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.about-header-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  width: 100%;
}

.about-header-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.about-header-text-title {
  color: #364AFF;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 650;
  line-height: 36px;
}

.about-header-text-description {
  color: #4A5565;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.about-header-image {
  flex: 1;
  max-width: 35%;
  object-fit: contain;
  border-radius: 12px;
}

/* Our Vision Section */
.our-mission-card-container {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.our-mission-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.our-mission-content-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 16px;
  flex: 1;
}

.our-mission-content-text-title {
  color: #364aff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.our-mission-content-text-description {
  color: #303030;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.our-mission-content-image {
  max-width: 200px;
  height: auto;
}

/* What We Solve Section */
.what-we-solve-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.what-we-solve-left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: 100%;
  box-sizing: border-box;
}

.what-we-solve-left-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 auto;
}

.what-we-solve-title {
  color: #364AFF;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 650;
  line-height: 24px;
  text-transform: uppercase;
}

.what-we-solve-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-we-solve-list li {
  padding-left: 28px;
  position: relative;
  color: #364153;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.what-we-solve-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #009689;
}

.what-we-solve-middle {
  display: flex;
  align-items: center;
  flex: 1 1 200px;
}

.what-we-solve-description {
  color: #303030;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.what-we-solve-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.solve-feature-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
}

.solve-feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(54, 74, 255, 0.1),
    0 4px 6px -2px rgba(54, 74, 255, 0.05);
  transform: translateY(-4px);
  border-color: #364aff;
}

.solve-feature-icon {
  width: 48px;
  height: 48px;
  background: #f0f2ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #364aff;
}

.solve-feature-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solve-feature-title {
  color: #101828;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-block: 0;
}

.solve-feature-text {
  color: #4A5565;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .what-we-solve-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .what-we-solve-left {
    height: auto;
  }
}

@media (max-width: 992px) {
  .about-header-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-header-text-container {
    align-items: center;
  }

  .about-header-image {
    max-width: 100%;
  }

  .our-mission-content-container {
    flex-direction: column;
    text-align: center;
  }

  .our-mission-content-text {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about-main-container {
    padding: 20px;
    padding-bottom: 60px;
  }

  .about-header-text-title {
    font-size: 36px;
  }

  .what-we-solve-right {
    grid-template-columns: 1fr;
  }

  .what-we-solve-left {
    padding: 24px;
  }

  .solve-feature-card {
    padding: 24px;
  }

  .our-mission-card-container {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .about-header-text-title {
    font-size: 30px;
  }

  .what-we-solve-title {
    font-size: 24px;
  }
}