* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d1b2a;
    color: #e0f2ff;
    line-height: 1.6;
    font-size: 120%;
}

.nav-container {
    width: fit-content;
    margin: 1rem auto;
    background-color: #13293d;
    padding: 0.7rem 2.5rem;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e0f2ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.nav-links a.active {
    background-color: #ffffff;
    color: #0d1b2a;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 100, 200, 0.3);
    transition: all 0.3s ease-in-out;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e0f2ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.nav-links a.active,
.nav-links a:hover {
    color: #f3f8fa;
    background-color: #13293d;
    border-bottom: 2px solid #00aaff;
}

.contact-btn {
    background-color: #243f5c;
    color: #0d1b2a;
    padding: 0.6rem 1.3rem;
    border-radius: 22px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 700px;
    padding-left: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #b0cbe8;
    margin-bottom: 2rem;
}

.address-btn {
    display: inline-block;
    background-color: #005f99;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s;
}

.address-btn:hover {
    background-color: #007acc;
}

.hero-image {
    position: relative;
    max-width: 400px;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
}

.experience-tag {
    position: absolute;
    bottom: 10px;
    right: 1px;
    background-color: rgba(0, 32, 64, 0.85);
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 1.3rem;
    text-align: center;
}

.experience-tag span {
    font-size: 0.85rem;
    display: block;
    color: #b0d6f0;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.content-section p {
    font-size: 1.1rem;
    color: #c6d8f2;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 0rem 1rem;
    }

    .hero-text {
        padding-left: 0;
        text-align: center;
    }

    .nav-container {
        padding: 1rem;
        border-radius: 30px;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .contact-btn,
    .address-btn {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .experience-tag {
        font-size: 1.1rem;
        padding: 0.4rem 1rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #e0f2ff;
}

@media (max-width: 1000px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        display: none;
        margin-top: 1rem;
    }

    .nav-links.show {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links a {
        width: 100%;
        padding: 0.7rem 1rem;
        border-radius: 12px;
    }
}

/* Animacja */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.product-section {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #0d1b2a;
  color: #e0f2ff;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.product {
  background-color: #13293d;
  border-radius: 12px;
  padding: 0.8rem;
  width: 30%;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  box-sizing: border-box;
  border-style: solid;
  border-color:#1c3f5f; /* red top, green right, blue bottom and yellow left */
}

.producer-btn {
 border-style: solid;
  border-color:#1c3f5f; /* red top, green right, blue bottom and yellow left */
  color: white;
  padding: 6px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
}

.product img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.product h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.product p {
  font-size: 0.9rem;
  margin: 0.8rem 0;
}

.product p strong {
  color: #00aaff;
}
.contact-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.contact-card {
  background-color: #13293d;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.contact-card p {
  margin-top: 0.5rem;
  color: #c6d8f2;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-card a {
  color: #00aaff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .icon {
  font-size: 2.5rem;
  color: #00aaff;
}

.contact-card .icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.7;
}

.map-wrapper {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 90%;
  }

  .map-wrapper iframe {
    height: 250px;
  }
}
.device-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.device-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  width: 400px;
}

.device-text {
  max-width: 500px;
  text-align: left;
}

.device-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.device-text p {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
}

/* Responsywność */
@media (max-width: 768px) {
  .device-offer {
    flex-direction: column;
    text-align: center;
  }

  .device-text {
    text-align: center;
  }
}


.software-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 5%;
  font-family: 'Poppins', sans-serif;
}

.software-item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.software-item.reverse {
  flex-direction: row-reverse;
}

.software-item img {
  width: 200px;
  height: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.software-description {
  max-width: 500px;
}

.software-description h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.software-description p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2e6da4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.btn:hover {
  background-color: #204d74;
}


.footer {
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}