
  section {
    padding: 35px 0px;
    max-width: 1200px;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4 {
    color: #111;
  }
  .flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  .flex-row .image-box {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  .image-box img:hover {
    transform: scale(1.03);
  }
  .flex-row .text {
    flex: 1;
    min-width: 300px;
  }
  .flex-row h1 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .flex-row p {
    font-size: 16px;
    color: #444;
    max-width: 600px;
    line-height: 1.8;
  }
  .btn-wrapper {
  text-align: center;
  margin-top: 25px;
}
.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ff7633;
  color: #fff !important;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.contact-btn:hover {
  background: #e75e1e;
}
  .contact-btn:hover {
    background: #e75e1e;
    color: #fff;
  }
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: calc(33% - 20px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: border-color 0.3s ease;
  }
  .card .image-box {
    overflow: hidden;
    border-radius: 8px;
  }
  .card img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  .card:hover img {
    transform: scale(1.05);
    filter: brightness(1.08);
  }
  .card h3 {
    font-size: 18px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
    line-height: 25px !important;
  }
  .card p {
    font-size: 14px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 44px;
    margin-top: 8px;
    line-height: 25px !important;
  }
  @media (max-width: 768px) {
    .card {
      width: 100%;
    }
  }
  .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: calc(33% - 20px);
    transition: all 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #ccc;
  }
  .testimonial-card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
  }
  .testimonial-card strong {
    font-weight: bold;
    color: #111;
  }
  @media (max-width: 768px) {
    .card {
      width: 100%;
    }
    .flex-row {
      flex-direction: column;
    }
    .flex-row h1 {
      font-size: 22px;
    }
    .flex-row p {
      font-size: 15px;
    }
    .testimonial-grid {
      flex-direction: column;
    }
    .testimonial-card {
      max-width: 100%;
    }
  }
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.faq-section h2 {
  font-size: 26px;
  margin-bottom: 30px;
  text-align: center;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  font-size: 17px;
  font-weight: bold;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
  color: #303f5f;
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease, content 0.3s ease;
}
.faq-question.active::after {
  content: '−';
}
.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  color: #444;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.electric-dirtbike-section a {
  color: #ff7633;
  text-decoration: none;
}