/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #1a73e8;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #1a73e8;
}
.hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #fff 100%);
  padding: 4rem 0 2rem 0;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.hero-text {
  flex: 1 1 350px;
}
.hero-text h1 {
  font-size: 2.8rem;
  color: #1a73e8;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  background: #1a73e8;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover {
  background: #155ab6;
}
.hero-image {
  flex: 1 1 300px;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(26,115,232,0.08);
}
.about {
  background: #fff;
  padding: 3rem 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.about-image {
  flex: 1 1 300px;
}
.about-image img {
  max-width: 100%;
  border-radius: 1.5rem;
}
.about-text {
  flex: 2 1 350px;
}
.about-text h2 {
  color: #1a73e8;
  margin-bottom: 1rem;
}
.featured {
  padding: 3rem 0;
}
.featured h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 2rem;
}
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.car-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(26,115,232,0.07);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.car-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(26,115,232,0.13);
}
.car-card img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.car-card h3 {
  margin-bottom: 0.5rem;
  color: #1a73e8;
}
.car-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.btn-small {
  background: #1a73e8;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-small:hover {
  background: #155ab6;
}
.how {
  background: #e3f0ff;
  padding: 3rem 0;
}
.how h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 2rem;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.step {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(26,115,232,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}
.step-number {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  margin-bottom: 0.7rem;
}
.testimonials {
  padding: 3rem 0;
  background: #fff;
}
.testimonials h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 2rem;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial {
  background: #e3f0ff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 1rem;
  color: #1a73e8;
  font-weight: 700;
}
.contact {
  padding: 3rem 0;
  background: #e3f0ff;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 250px;
}
.contact-form {
  flex: 2 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #b3c6e0;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
.contact-form button {
  background: #1a73e8;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #155ab6;
}
footer {
  background: #1a73e8;
  color: #fff;
  padding: 2rem 0 1rem 0;
  margin-top: 2rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.2s;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .hero-content, .about-content, .contact-content, .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .steps, .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .car-card, .step, .testimonial {
    padding: 1rem;
  }
} 