
.feature-cards-section {
  background-color: #251812;
  color: #fff;
  text-align: center;
}

.feature-cards-section .container {
  max-width: 1352px;
  margin: 0 auto;
}

.section-heading {
  font-size: 64px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 70px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  justify-items: center;
}

.card {
  background-color: #2C1818;
  border: 1px solid #412626;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(1.2) saturate(1.4);
}

.card-title {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.card-text {
  color: #CBB2B2;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading { font-size: 32px; margin-bottom: 50px; }
  .card { padding: 40px 25px; max-width: 100%; }
}