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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  color: #3bb273;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

i {
  color: #3bb273;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 2rem;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
}

.logo img {
  margin-right: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  color: #666;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #333;
}

.nav-menu a.active {
  color: #333;
  font-weight: 500;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.site-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #e5e5e5;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-container {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.hero-header .hero-subtitle {
  color: #666;
  font-size: 1.25rem;
  font-weight: 400;
}

.content-section {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  background: #3bb273;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.section-title p {
  color: #666;
  font-size: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.map-iframe {
  border: 0;
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-content p {
  color: #666;
  font-size: 0.95rem;
}

.pricing-table {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

th {
  background: #3bb273;
  color: white;
  font-weight: 600;
}

tr:nth-child(even) {
  background: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #3bb273;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] > .faq-question .bi-chevron-down {
  transform: rotate(180deg);
}

.faq-question .bi-chevron-down {
  transition: transform 0.2s ease-in-out;
}

.faq-answer {
  padding: 1.5rem;
  background: #fff;
}
.faq-answer p {
    color: #666;
    margin-bottom: 1rem;
}
.faq-answer ul {
    color: #666;
    margin-left: 1.5rem;
}

.brands-marquee-wrapper {
  overflow: hidden;
  padding: 2rem 0;
}

.brands-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.brand-logo {
  flex: 0 0 auto;
  margin: 0 30px;
  display: flex;
  align-items: center;
}

.brand-logo img {
  max-width: 100px;
  max-height: 40px;
  display: block;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.rental-companies-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto;
}

.company-tile {
  min-width: 300px;
  flex: 0 1 300px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.company-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.company-tile-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.company-check {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.company-tile p {
  color: #666;
  font-size: 0.95rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3bb273;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: #333;
}

.author-context {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-body {
  flex-grow: 1;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-style: normal;
  color: #333;
  line-height: 1.6;
}

.author-box-section {
  background-color: #f8f9fa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.author-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.author-initials-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #3bb273;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2.5rem;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.author-title {
  font-size: 1rem;
  font-weight: 500;
  color: #3bb273;
  margin-bottom: 1rem;
}

.author-bio {
  max-width: 650px;
  color: #666;
  margin: 0 auto 1.5rem;
}

.author-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.author-socials a {
  font-size: 1.5rem;
  color: #999;
  transition: color 0.2s ease-in-out;
}

.author-socials a:hover {
  color: #3bb273;
}

.icon-white {
  color: white !important;
}
.text-secondary {
  color: #666;
  line-height: 1.6;
}
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

main h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.25rem;
}
main ul {
  padding-left: 2rem;
  margin-top: 0.5rem;
}
.feature-content h4,
.company-tile h4,
.step-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.step-card h4 {
  font-size: 1.2rem;
}
.company-tile h4 {
  margin: 0;
}

.footer-description {
  font-weight: 400;
  font-size: 1rem;
}
.footer-copyright {
  color: #888;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }

  .header-content {
    flex-direction: row;
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav-menu.active {
    display: flex;
  }

  main {
    padding: 2rem 1rem;
  }

  .hero-container {
    padding: 2rem 1rem;
  }

  .hero-header h1 {
    font-size: 2rem;
  }

  .hero-header .hero-subtitle {
    font-size: 1.1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-iframe {
    height: 250px;
  }

  .features-grid, .process-steps {
    grid-template-columns: 1fr;
  }

  .rental-companies-tiles {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-header h1 {
    font-size: 1.75rem;
  }

  .hero-header .hero-subtitle {
    font-size: 1rem;
  }

  .content-section {
    padding: 1.5rem 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .feature-card, .company-tile {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .feature-icon, .company-check {
    align-self: center;
  }

  .pricing-table table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem 0.5rem;
  }
}

@media (min-width: 768px) {
  .author-box {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  .author-avatar-wrapper {
    flex-shrink: 0;
  }
  .author-bio {
    margin-left: 0;
  }
  .author-socials {
    justify-content: flex-start;
  }
}
