/* Features Page Styling */
.features-page {
  background-color: #fbfbfb;
  padding: 40px;
  border-radius: 8px;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 5px;
}

.feature-card {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.feature-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}
