.hero-banner {
  background: linear-gradient(107deg, rgba(5,146,200,1) 0%, rgba(15,113,117,1) 100%);
  padding: 60px 20px 40px 20px;
  margin: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-banner h1 {
  font-size: 44px;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  opacity: 0.9;
  max-width: 700px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
}

.hero-points li {
  font-size: 16px;
  margin-bottom: 12px;
  text-align: left;
}

.hero-points li i {
  color: #4caf50; /* green check icon */
  margin-right: 8px;
  font-size: 18px;
}


.why-choose {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0A2A49;
}

.why-subheadline {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
  opacity: 0.9;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.why-card i {
  font-size: 40px;
  color: #e9900a;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0A2A49;
}

.about-subheadline {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
  opacity: 0.9;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.about-text {
  flex: 1 1 300px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.about-image {
  flex: 1 1 300px;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.ordering-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.ordering-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0A2A49;
}

.ordering-subheadline {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
  opacity: 0.9;
}

.ordering-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.ordering-step {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ordering-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.ordering-step i {
  font-size: 40px;
  color: #e9900a;
  margin-bottom: 15px;
}

.ordering-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.ordering-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.testimonials-slider {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials-slider h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0A2A49;
  font-weight: 700;
}

.swiper {
  max-width: 600px;
  margin: 0 auto;
}

.swiper-slide {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.stars {
  font-size: 22px;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
  color: #0A2A49;
  font-size: 15px;
}

.swiper-pagination {
  margin-top: 15px;
}

