.features-section .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* ----- Headings ----- */
.features-title {
  color: #00215c;
  font-size: 49px;
  font-weight: 700;
  margin-bottom: 12px;
}

.features-subtitle {
  color: #306f98;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Features Row Layout ----- */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ----- Each Feature Row ----- */
.feature-item {
  display: flex;
  align-items: flex-start;
  background: transparent;
  border-radius: 4px;
  text-align: left;
  gap: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 16px 0;
}

.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* ----- Text Content ----- */
.feature-content {
  flex: 1;
}

.feature-title {
  color: #00215c;
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.feature-text {
  color: #306f98;
  font-size 20px;
  line-height: 1.7;
  margin: 0;
}

/* ----- Hover Effects ----- */
.feature-item:hover .feature-icon {
  background: #306f98;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .features-section {
    padding: 80px 0;
  }

  .feature-item {
    gap: 20px;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-text {
    font-size: 0.975rem;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 60px 0;
  }

  .features-title {
    font-size: 1.75rem;
  }

  .features-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .feature-icon img {
    width: 56px;
    height: 56px;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-text {
    font-size: 0.95rem;
  }
}
