/* === Features Section (Bright) === */
.features {
  background: #f7f5e7;       /* parchment background */
  color: #0b3d0b;            /* dark green text */
  padding: 5rem 1.5rem;
}

.features .container {
  max-width: 1000px;
  text-align: center;
}

.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #0b3d0b;  /* dark green heading */
  margin-bottom: 1.5rem;
}

.features-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature {
  background: #fff;  /* white cards */
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.feature h3 {
  color: #0a7d42; /* emerald headings */
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.feature p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* stack */
  }

  .feature {
    text-align: center;
  }
}
