* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: sans-serif;
    line-height: 1.5;
    background: #f5f5f5;
  }

  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    z-index: 10;
    backdrop-filter: blur(6px);
} 
  
  .navbar .logo {
    font-size: 24px;
    font-weight: bold;
  }
  .navbar nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
  }
  .navbar nav a:hover {
    text-decoration: underline;
  }
  

  .hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
  }
  
  .slide {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ważne: przycina lub rozciąga tak, aby obraz zakrywał całość */
    z-index: 0;
  }
  
  .slide-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    max-width: 500px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
  }
  
  @keyframes fadeInUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Przyciski */
  .buttons {
    margin-top: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    margin-right: 10px;
  }
  
  .btn.primary {
    background: #007bff;
    color: white;
  }
  
  .btn.primary:hover {
    background: #0056b3;
  }
  
  /* Responsywność */
  @media (max-width: 768px) {
    .slide-content {
      left: 20px;
      right: 20px;
      max-width: unset;
    }
  
    .btn {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
    }
  }




  .crash-repairs {
    padding: 80px 20px;
    background: #f8f8f8;
  }
  
  .crash-repairs .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .content-wrapper .text {
    flex: 1 1 500px;
  }
  
  .content-wrapper .text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .content-wrapper .text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .content-wrapper .image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .content-wrapper .image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  







  .hail-repairs {
    padding: 180px 20px;
    background: #f3f3f3;
  }
  
  .hail-repairs .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hail-repairs .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .hail-repairs .text {
    flex: 1 1 500px;
  }
  
  .hail-repairs .text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hail-repairs .text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .hail-repairs .image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .hail-repairs .image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }


  section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .why-us ul {
    list-style: none;
    padding-left: 0;
  }
  .why-us li {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .steps .step {
    margin-bottom: 24px;
  }
  .steps span {
    display: inline-block;
    background: #e63946;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 50%;
    line-height: 32px;
    margin-right: 10px;
    font-weight: bold;
  }

  .buttons-step{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .btn-steps{
    padding: 10px 50px 10px;
  }

  .footer-parallax {
    padding-top: 100px;
    max-width: 1500px;
    padding: 10px;
    position: relative;
    height: 60vh;
    background: url('images/zaufanier.png') no-repeat center center / cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
  }
  
  .footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .footer-text {
    color: white;
    max-width: 800px;
    z-index: 2;
    animation: fadeUp 1.2s ease both;
  }
  
  .footer-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .footer-text p {
    font-size: 18px;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .footer-parallax {
      height: 40vh;
    }
  
    .footer-text h2 {
      font-size: 24px;
    }
  
    .footer-text p {
      font-size: 16px;
    }
  }
  
  