body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
}


.brand {
  font-size: 2rem;
  font-weight: bold;
  color: #1a73e8;
  margin-top: 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.hero {
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
    position: relative;
}
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.hero-text h1 {
    font-size: 2rem;
    margin: 0.5em 0 0.2em;
}
.hero-text p {
    margin: 0 0 1em;
}
.quote-btn {
    background-color: #2f855a;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
}
.section {
    padding: 40px 20px;
    text-align: center;
}
.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}
footer {
    background: #eee;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
}
/* === MOBILE STYLES === */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  .hero {
    padding: 40px 15px;
    background-position: center;
    background-size: cover;
  }

  .logo {
    width: 100px;
    top: 10px;
    left: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .section {
    padding: 40px 20px;
    background-color: #f7f9fb;
    border-top: 1px solid #ddd;
    text-align: center;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  input, textarea, button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
}
/* ========= Existing CSS ends here ========= */

/* Mobile styles for hero section */
@media (max-width: 600px) {
  .hero {
    padding: 40px 15px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .logo {
    width: 60px;
    max-width: 20vw;
    height: auto;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10;
  }
}
