/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffef8;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
.header {
  background-color: #f6f7fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  border-bottom: 1px solid #ddd;
}

.header .logo img {
  width: 120px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.cta-button {
  background-color: #fa6400;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d45400;
}

/* Hero */
.hero {
  background-color: #fff2e5;
  padding: 70px 5% 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.75rem;
  color: #222;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* How It Works Section */
.how-it-works {
  background-color: #fdfdfd;
  text-align: center;
  padding: 60px 10%;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  margin-bottom: 30px;
}

.step {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 25%;
}

.step img {
  width: 50px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
}
/* Footer */
.footer {
  background: #292929;
  color: #ccc;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

.footer a {
  color: #fa6400;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 12% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-content h2 {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.modal-content button {
  background-color: #fa6400;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.modal-content button:hover {
  background-color: #d45400;
}

.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
  font-size: 2.05rem;
  color: #222;
  margin-bottom: 15px;
}
  .header {
    flex-direction: column;
    text-align: center;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .hero-image {
    max-width: 100%;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    width: 90%;
    max-width: 350px;
  }
  .cta-button {
    padding: 10px 20px;
  }
}
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 6% 40px;
  }
  .hero-content, .hero-image {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 30px;
    justify-content: center;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    width: 90%;
    max-width: 350px;
  }
  .cta-button {
    padding: 10px 20px;
  }
}
