* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffffa;
  color: #333;
  line-height: 1.6;
}

.logo-img {
  height: 75px;
}

.powrot-link {
  font-weight: 700;
  font-size: 1.1rem;
  color: #FF6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.powrot-link:hover {
  color: #CC5200;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #111;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav li a:hover {
  color: #FF6600;
}

/* HERO SEKCJA */
.import-hero {
  background-color: #fef5f0;
  text-align: center;
  padding: 100px 20px 60px 20px;
}

.import-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #FF4500;
  font-weight: 700;
}

.import-hero p {
  font-size: 20px;
  color: #555;
  font-weight: 500;
}

/* SEKSCJA IMPORT DETAILS */
.import-details {
  background-color: #fff;
  padding: 80px 20px;
}

.import-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.import-text {
  flex: 1 1 500px;
}

.import-text h2 {
  font-size: 34px;
  color: #FF4500;
  margin-bottom: 20px;
}

.import-text p {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
  font-weight: 500;
}

.import-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.import-text ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.hero-btn-import {
  display: inline-block;
  background-color: #FF6600;
  color: white;
  padding: 14px 34px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn-import:hover {
  background-color: #FF4500;
  transform: translateY(-4px);
}

.import-image {
  flex: 1 1 400px;
  text-align: center;
}

.import-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.modal {
  display: none; /* Ukryj domyślnie */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* Półprzezroczyste tło */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  text-align: center;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}


/* FOOTER */
footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  color: #FF6600;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column p, .footer-column ul li a {
  font-size: 15px;
  color: #00BFFF;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: #FF6600;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #00BFFF;
  border-top: 1px solid #222;
  padding-top: 20px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .import-flex {
    flex-direction: column;
    text-align: center;
  }

  .import-text h2 {
    font-size: 26px;
  }

  .import-hero h1 {
    font-size: 30px;
  }

  .import-hero p {
    font-size: 16px;
  }

  .hero-btn-import {
    font-size: 16px;
    padding: 12px 24px;
  }

  .logo-img {
    height: 50px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}