* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

/* NAV */
nav {
  background: #111;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #4caf50;
}

/* HERO */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #222, #333);
  color: white;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #4caf50;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #45a049;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  flex: 1 1 250px;
  text-align: center;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* PRICING */
.pricing {
  display: flex;
  justify-content: center;
}
.price-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.price-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
input,
textarea {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}
input:focus,
textarea:focus {
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.4);
  outline: none;
}
button {
  padding: 0.75rem;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* MAIN PAGE FOOTER (fixed selector) */
.site-footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: white;
  margin-top: 2rem;
}

/* TESTIMONIALS */
#testimonials {
  background: #e8f5e9;
  padding: 4rem 2rem;
  border-radius: 10px;
  margin: 3rem auto;
  max-width: 1000px;
  text-align: center;
}
.testimonials blockquote {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(223, 215, 215, 0.806);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}
.testimonials blockquote footer {
  margin-top: 0.8rem;
  font-weight: bold;
  color: #4caf50;
  background: transparent; /* ✅ Fix: removes black background */
  display: inline-block;   /* ✅ Optional: makes footer inline */
}

/* FAQ ACCORDION */
#faq {
  max-width: 700px;
  margin: 3rem auto 5rem;
}
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: #4caf50;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #45a049;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: white;
  padding: 0 1rem;
  border-radius: 0 0 5px 5px;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 1rem 0;
  margin: 0;
}

/* STICKY GET STARTED BUTTON */
.sticky-get-started {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(114, 98, 98, 0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
.sticky-get-started:hover {
  background: #45a049;
  transform: translateY(-3px);
}
