:root {
  --green: #3fa34d;
  --orange: #ff6f2c;
  --charcoal: #292929;
  --white: #f5f5f5;
  --purple: #5f4b8b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--white);
  background: linear-gradient(135deg, #292929, #3fa34d, #5f4b8b);
  line-height: 1.6;
}

.hero {
  background: url('../images/fire-photo.jpg') center center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

.hero .logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 60px;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: darkorange;
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.about, .perks, .cta {
  text-align: center;
}

.perks ul {
  list-style: none;
  padding: 0;
}

.perks li {
  background: rgba(255, 255, 255, 0.05);
  margin: 0.5rem 0;
  padding: 0.75rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.testimonial {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial blockquote {
  font-style: italic;
  max-width: 800px;
  margin: auto;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

footer {
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem;
}

footer a {
  color: var(--orange);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .hero .logo {
    height: 40px;
    top: 10px;
    left: 10px;
  }
}