/* Global Styles */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Header */
header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 24px;
  font-weight: 600;
  color: #0073e6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  /* Adjust padding as needed for vertical centering */
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #ff5722;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  background-color: #e64a19;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: #fff;
}
.features h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0073e6;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.feature {
  background: #f9f9f9;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.feature h3 {
  margin-bottom: 15px;
  color: #0073e6;
}

/* About Section */
.about {
  padding: 60px 0;
  background-color: #f5f5f5;
  text-align: center;
}
.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0073e6;
}
.about p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}

/* How It Works Section */
.how-it-works {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}
.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0073e6;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.step {
  background: #f9f9f9;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.step h3 {
  margin-bottom: 10px;
  color: #ff5722;
}
.step p {
  font-size: 16px;
}

/* Exclusive Offers Section */
.offers {
  padding: 60px 0;
  background-color: #f5f5f5;
  text-align: center;
}
.offers h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0073e6;
}
.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.offer {
  background: #fff;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.offer h3 {
  margin-bottom: 15px;
  color: #ff5722;
}
.offer p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background-color: #f5f5f5;
  text-align: center;
}
.testimonials h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0073e6;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.testimonial {
  background: #fff;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.testimonial p {
  font-size: 16px;
  margin-bottom: 10px;
}
.testimonial h4 {
  font-size: 14px;
  color: #777;
}

/* Legal Section */
.legal {
  padding: 60px 0;
  background-color: #fff;
}
.legal h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0073e6;
}
.legal-content {
  max-width: 800px;
  margin: auto;
}
.legal-content > div {
  margin-bottom: 30px;
}
.legal-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff5722;
}
.legal-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .features-grid, .steps, .testimonial-grid, .offers-grid {
    flex-direction: column;
  }
}
