* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Karla, sans-serif;
}

html, body {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Header */
header {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  font-size: 1.4rem;
  text-decoration: none;
  color: white;
  padding: 8px 14px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #45a049;
  border-radius: 5px;
}

/* Hero */
.hero {
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1000px;
  background: #4CAF50;
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #45a049;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #3e8b41;
  transform: scale(1.05);
}

/* Gallery */
.gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Features */
.features {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.features h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  flex: 1 1 250px;
  max-width: 350px;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Pricing */
.pricing {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.pricing h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.plan {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  text-align: center;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan h2, .plan h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.plan-note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
}

.plan .price {
  font-size: 1.25rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.plan ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

.plan ul li {
  margin-bottom: 0.5rem;
}

.plan.featured {
  border: 2px solid #4CAF50;
  background: #e8f5e9;
  transform: scale(1.05);
}

/* Disclaimer */
.disclaimer {
  align-self: center;
  background-color: #f9f9f9;
  color: #333;
  margin: 2vw auto;
  max-width: 800px;
  border-left: 5px solid #4CAF50;
  border-radius: 5px;
  text-align: center;
  font-size: calc(0.9rem + 0.3vw);
  padding: 1.5rem;
}

.disclaimer h2 {
  margin-bottom: 1vw;
}

/* Contact */
.contact {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.contact h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact a {
  color: #4CAF50;
  font-weight: bold;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Trust Section */
.trust {
  padding: 2rem;
  background: #eef9f0;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trust ul {
  list-style: none;
  padding-left: 0;
}

.trust ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* CTA Sections */
.cta {
  text-align: center;
  margin: 2rem 0;
}

/* Footer */
footer {
  background: #45a049;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .feature-cards,
  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }
}

/* Additional sections: stats, testimonials, faq, extras */
.stats {
  padding: 2rem 0;
  text-align: center;
}

.stat-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stat-item {
  background: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.gallery-caption {
  margin-top: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.muted {
  color: #666;
}

.faq h2{
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.faq-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Utility / small tweaks */
.lead {
  text-align: center;
  color: #555;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .stat-container { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Layout fixes and structural styles */

/* Footer should always sit under page content */
footer {
  clear: both;
  width: 100%;
  position: relative;
}

/* Process / "How it works" styling */
.process { padding: 3rem 0; }
.process h2 { text-align: center; margin-bottom: 1rem; }
.process-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.process-list li {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  text-align: left;
}
.process-list li strong { display:block; color: #2f855a; margin-bottom: .5rem; }

/* Pricing spacing and extras styling */
.pricing-intro { margin-bottom: 2.25rem; }
.pricing-extras {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.pricing-extras .extras-grid { gap: 1.25rem; }
.pricing-extras .extra-item {
  background: #fafafa;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #e6f4ea; /* subtle green border */
}

/* Contact form styles */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.contact-info {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid #eef6ee;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea,
.contact-form input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-top: 0.5rem;
  box-sizing: border-box;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form button[type="submit"], .contact-form .btn {
  background: #2563eb;
  border: none;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form button[type="submit"]:hover { background: #1e40af; }

@media (max-width: 900px) {
  .contact-container { grid-template-columns: 1fr; }
  .stat-container { flex-direction: column; }
}

/* Feature details: no bullets and spaced paragraphs */
.feature-details p { margin: 0.4rem 0; }

/* Testimonials: stronger visual and call-to-action */
.testimonials { padding: 2.5rem 1rem; }
.testimonials h2 { text-align: center; margin-bottom: .5rem; }
.testimonials .muted { text-align: center; margin-bottom: 1rem; color: #444; }
.testimonial { transition: transform .2s ease; }
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }
.testimonial cite { display: block; margin-top: .75rem; font-style: normal; color: #666; }

/* Extras: headings use green accent; body text is black */
.pricing-extras { color: #000; }
.pricing-extras p, .pricing-extras li { color: #000; }
.pricing-extras .extra-item h3 { color: #2f855a; margin-bottom: .5rem; }

/* Keep testimonials and FAQ from touching the page edges */
.testimonials, .faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem; /* vertical padding and small side padding for narrow screens */
  box-sizing: border-box;
}


.testimonials .testimonial-grid,
.faq .faq-grid {
  gap: 1rem;
}

@media (max-width: 900px) {
  .testimonials, .faq { padding: 2rem 1rem; }
}
