/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Each feature card */
.feature {
  background: #77383e;
  color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.feature:hover {
  background-color: #44b944;
  transform: translateY(-2px);
}

/* Headings inside feature */
.feature h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Paragraphs inside feature */
.feature p {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Call-to-action button inside feature */
.feature .cta {
  background: #ffffff;       /* white button */
  color: #77383e;            /* maroon text */
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

/* Button hover effect */
.feature .cta:hover {
  background: #f0f0f0;       /* subtle hover */
}

/* Paragraph under section title */
.section .lead {
  font-size: 17px;
  
  color: black;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive layout */
@media(max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}
