/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f9fafb;
  color: #1f2933;
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.section-title.light {
  color: white;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  height: 120px;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #1f2933;
  font-weight: 500;
}

.nav a:hover {
  color: #29a329;
}

/* Buttons */
.btn-primary {
  background: #29a329;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: #248f24;
}

.btn-light {
  background: white;
  color: #29a329;
  padding: 14px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
}

.full {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #29a329, #248f24);
  color: white;
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.trust {
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 12px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 24px;
}

.list li {
  margin-bottom: 12px;
}

/* Quote Form */
.contact {
  background: #29a329;
  padding: 80px 0;
}

.contact-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.quote-form {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.quote-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #1c5f1c;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #1c5f1c;
  background: #ffffff;
  color: #1c5f1c;
  font-size: 0.95rem;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #1c5f1c;
}

.full-width {
  margin-top: 20px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 20px 0;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.checkbox input {
  margin-top: 3px;
}

.checkbox label {
  line-height: 1.4;
  cursor: pointer;
}

.quote-form button {
  background: #29a329;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 24px;
}

/* Utility */
.hidden {
  display: none;
}
/* FAQ */
.faq {
  background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: auto;
  display: grid;
  gap: 24px;
}

.faq-item {
  background: #f9fafb;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #111827;
}

.faq-item p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-flex {
    padding: 5px ;
  justify-content: space-between;
  }

  .logo {
    height: 90px;
  }

  .btn-primary {
    padding: 8px 14px;
    font-size: 14px;
  }
}
