body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

/* HERO BANNER */
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(249, 108, 0, 1), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-banner {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-start;
  padding: 40px 60px;
  color: rgb(255, 255, 255);
  overflow: hidden;
}

.hero-banner__image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding-left: 20px;
}

.hero-banner__title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  left: 70px;
   margin-top: 130px;
}
@media (max-width: 992px) {
  .hero-banner {
    height: 220px;
    padding: 30px 40px;
  }

  .hero-banner::before {
    width: 40%;
  }

  .hero-banner__title {
    font-size: 36px;
    left: 40px;
    margin-top: 90px;
  }

  .hero-banner__content {
    max-width: 80%;
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 180px;
    padding: 20px 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-banner::before {
    width: 30%;
  }

  .hero-banner__title {
    font-size: 28px;
    left: 0;
    margin-top: 0;
  }

  .hero-banner__content {
    max-width: 100%;
    padding-left: 0;
  }
}
/* INTRO SECTION */
.intro-section {
  padding: 20px 20px;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-section__title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: rgb(255, 128, 0);
  text-align: left;
}

.intro-section__text {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 900px;
  color: #555;
  margin: 0 0 20px 0;
}
.intro-section__list {
  column-count: 2;
  column-gap: 60px;
  list-style-type: none;
  padding-left: 0;
  font-size: 1.25rem; /* większa czcionka */
  line-height: 1.8;
  color: #555;
  max-width: 1000px;
  
}

.intro-section__list li {
  break-inside: avoid;
  margin-bottom: 12px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .intro-section__title {
    font-size: 2.2rem;
  }

  .intro-section__text {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .intro-section__list {
    column-count: 1;
    column-gap: 0;
    max-width: 100%;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 15px 15px;
  }

  .intro-section__title {
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
  }

  .container {
    align-items: center;
  }

  .intro-section__text {
    font-size: 1rem;
    text-align: center;
  }

  .intro-section__list {
    font-size: 1rem;
  }
}

/* MACHINES SECTION */
.machines-section {
  padding: 60px 20px;
  background-color: transparent;
  max-width: 1400px;
  margin: 0 auto;
}

.machines-section__header {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}

.machines-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* MACHINE CARD */
.machine-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.machine-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.machine-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #ffffff;
  display: block;
  border-bottom: 1px solid #e0e0e0;
}

.machine-card__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 20px 20px 5px 20px;
  color: #111;
}

.machine-card__weight-range {
  font-size: 1rem;
  color: #555;
  margin: 0 20px 10px 20px;
  font-weight: 500;
}

.machine-card__description {
  font-size: 1rem;
  color: #666;
  margin: 0 20px 15px 20px;
  line-height: 1.4;
}

.machine-card__link {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  color: #d86823c7;
  text-decoration: none;
  margin: 0 20px 20px 20px;
  padding: 8px 16px;
  border: 2px solid #bb5a10;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.machine-card__link:hover {
  background-color: #ff6f00;
  color: #ffffff;
}
.machine-cardx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.machine-cardx:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.machine-cardx img {
  width: 100%;
  height: 280px; 
  object-fit: contain;
  background-color: #ffffff;
  display: block;
  border-bottom: 1px solid #e0e0e0;
}


.machine-cardx__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 20px 20px 5px 20px;
  color: #111;
}

.machine-cardx__weight-range {
  font-size: 1rem;
  color: #555;
  margin: 0 20px 10px 20px;
  font-weight: 500;
}

.machine-cardx__description {
  font-size: 1rem;
  color: #666;
  margin: 0 20px 15px 20px;
  line-height: 1.4;
}

.machine-cardx__link {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  color: #ff6f00;
  text-decoration: none;
  margin: 0 20px 20px 20px;
  padding: 8px 16px;
  border: 2px solid #ff6f00;
  border-radius: 6px;
  transition: all 0.3s ease;
}


.machine-cardx__link:hover {
  background-color: #ff6f00;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 280px;
    padding: 50px 20px;
  }

  .hero-banner__title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .intro-section__title {
    font-size: 2rem;
  }

  .intro-section__text {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .machines-section__header {
    font-size: 28px;
  }
}
.minikoparka-section {
  background-color: #e3e3e3;
  padding: 40px;
  margin-top: 40px;
}

.minikoparka-row {
  display: flex;
  align-items: center; /* <-- Środkowanie logo w pionie względem tekstu */
  gap: 30px;
}

.minikoparka-description {
  flex: 1;
  font-size: 18px; /* <-- Powiększona czcionka */
  color: #333;
}

.minikoparka-description h2 {
  font-size: 28px; /* <-- Powiększony nagłówek */
  font-weight: bold;
  color: #1E2A47;
  margin-bottom: 20px;
}

.minikoparka-image {
  flex-shrink: 0;
  width: 250px;
  padding-top: 10px; /* <-- Delikatne opuszczenie w dół */
}

.minikoparka-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .minikoparka-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .minikoparka-description {
    font-size: 16px;
    text-align: center;
  }

  .minikoparka-description h2 {
    font-size: 24px;
  }

  .minikoparka-image {
    width: 180px;
    padding-top: 5px;
  }
}

@media (max-width: 480px) {
  .minikoparka-section {
    padding: 20px 15px;
  }

  .minikoparka-description {
    font-size: 14px;
  }

  .minikoparka-description h2 {
    font-size: 20px;
  }

  .minikoparka-image {
    width: 140px;
    padding-top: 3px;
  }
}
.contact-expert-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background-color: #f7f7f7;
}

.contact-text {
  flex: 1;
  text-align: left;
}

.contact-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #555;
}

.whatsapp-link {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #128c7e;
}

/* Styl zdjęcia i danych kontaktowych */
.contact-image {
  text-align: center;
  flex: 1;
  margin-top: 60px;  /* Dalsze obniżenie zdjęcia */
}

.contact-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 24px;
  margin-top: 5px;  /* Dalsze zmniejszenie odstępów */
  font-weight: bold;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 5px;  /* Dalsze zmniejszenie odstępów */
  color: #888;
}

.contact-info {
  font-size: 18px;
  color: #333;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .contact-expert-section {
    padding: 30px 3%;
  }

  .contact-text h2 {
    font-size: 24px;
  }

  .contact-text h3 {
    font-size: 18px;
  }

  .whatsapp-link {
    font-size: 13px;
    padding: 8px 14px;
  }

  .contact-image img {
    max-width: 160px;
  }

  .name {
    font-size: 18px;
  }

  .subtitle {
    font-size: 14px;
  }

  .contact-info {
    font-size: 14px;
  }
}