/* Home Page */
.home-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.home-hero h1 {
  font-size: 24px;
  font-weight: 700;
  color: #ff8c69;
  margin-bottom: 12px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(255, 140, 105, 0.2);
}

.hero-subtitle {
  font-size: 15px;
  color: #5a9997;
  margin-bottom: 25px;
  line-height: 1.5;
}

.why-choose-section {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.why-choose-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #ff8c69;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(255, 140, 105, 0.2);
}

.hero-image {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}

.feature-img-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-img {
  width: 100%;
  height: auto;
  display: block;
  flex: 1;
  object-fit: cover;
  min-height: 250px;
}

.feature-caption {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #5ebdb8;
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
}

.newsletter-cta {
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(255, 154, 118, 0.3);
}

.newsletter-cta h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
}

.newsletter-trigger {
  background: white;
  color: #ff8c69;
  margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
  .feature-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .home-hero {
    padding: 40px 50px;
  }
  
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
  }
}