/* ============== Our Values =============
 ========================================= */
.our-value-section .container {
  gap: 32px;
}

.our-value-section .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding-bottom: 48px;
}

.our-value-section .section-title h2 {
  font-size: 49px;
  margin-bottom: 16px;
}

.our-value-section .section-title p {
  color: var(--text-color);
  line-height: 30px;
  font-size: 18px;
  max-width: 400px;
}

.our-value-section .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  flex: 1;
}

.our-value-section .cards .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.our-value-section .cards .card .content {
  flex: 1;
}

.our-value-section .cards .card h3 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.our-value-section .cards .card p {
  color: var(--text-color);
  line-height: 24px;
}
