* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
  }
  
  .hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/car.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;  
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
  }
  
  .content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
  }
  

  
  .logo img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .description {
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  
  .buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .btn-icon {
    width: 24px;
    height: 24px;
  }
  
  .contact-btn {
    background-color: #e63946;
    color: #ffffff;
  }
  
  .contact-btn:hover {
    background-color: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  }
  
  .location-btn {
    background-color: #e63946;
    color: #ffffff;
  }
  
  .location-btn:hover {
    background-color: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  }
  
  @media (max-width: 768px) {
    .logo img {
      max-width: 350px;
    }
  
    .description {
      font-size: 20px;
      margin-bottom: 35px;
    }
  
    .buttons {
      gap: 15px;
    }
  
    .btn {
      padding: 16px 32px;
      font-size: 16px;
    }
  
    .btn-icon {
      width: 20px;
      height: 20px;
    }
  }
  
  @media (max-width: 480px) {
  
    .logo img {
      max-width: 400px;
    }
  
    .description {
      font-size: 18px;
      margin-bottom: 30px;
      padding: 0 15px;
    }
  
    .buttons {
      flex-direction: column;
      gap: 12px;
      width: 100%;
      padding: 0 20px;
    }
  
    .btn {
      width: 100%;
      max-width: 300px;
      padding: 14px 28px;
      font-size: 15px;
    }
  
    .btn-icon {
      width: 18px;
      height: 18px;
    }
  }
  
  @media (max-width: 360px) {
    .logo img {
      max-width: 240px;
    }
  
    .description {
      font-size: 16px;
    }
  
    .btn {
      padding: 12px 24px;
      font-size: 14px;
    }
  }
  
  .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 20px;
    text-align: center;
  }
  
  .footer p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    font-weight: 300;
  }
  
  .footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #e63946;
    text-decoration: underline;
  }
  
  @media (max-width: 480px) {
    .footer {
      padding: 15px;
    }
  
    .footer p {
      font-size: 12px;
    }
  }
  