
body {
    font-family: 'Poppins', sans-serif; 
    background-color: #f9f9f9; 
    color: #333; 
  }
  
  h1, h2, h3 {
    color: #003f8f; 
  }
  
  a {
    text-decoration: none;
    color: #003f8f; 
  }
  
  a:hover {
    color: #c00; 
  }
  
  
  
  
  .btn-primary {
    background-color: #003f8f; 
    color: #fff; 
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #c00; 
  }
  
  .btn-secondary {
    background-color: #c00; 
    color: #fff; 
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .btn-secondary:hover {
    background-color: #003f8f; 
  }
  

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center; 
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  
  
  header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  
  header .logo {
    display: flex;
    align-items: center; 
    justify-content: center;
    margin-right: 80px;
    margin-bottom: 10px; 
  }
  
  header .logo img {
    height: 100px; 
    transition: height 0.3s ease-in-out;
  }
  
  
  header.scrolled .logo img {
    height: 50px; 
  }
  
  
  header .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    margin-right: 50px;
    padding: 0;
    gap: 40px;
    margin-bottom: 12px
  }
  
  header .nav-links li {
    margin: 0;
  }
  
  header .nav-links a {
    color: #ee1010;
    font-weight: 800;
    padding: 8px 10px;
    transition: color 0.3s;
    font-size: 1.2em;
   
    
  }
  
  header .nav-links a:hover {
    color: #c00;
  }
  
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      padding: 10px;
    }
  
    header .nav-links {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  
    header .logo img {
      height: 80px; 
    }
  
    header.scrolled .logo img {
      height: 40px; 
    }
  }
  
  
  @media (max-width: 768px) {
    header {
      flex-direction: column; 
      padding: 10px;
    }
  
    header .nav-links {
      flex-direction: column; 
      gap: 10px;
      text-align: center; 
    }
  
    header .logo img {
      height: 40px; 
    }
  }
  .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.eu-flag img {
  height: 60px; /* adjust based on your design */
  width: auto;
}

.logo img {
  height: 50px; /* adjust accordingly */
}

nav {
  display: flex;
  align-items: center;
  gap: 50px; /* This adds space between the nav links and the EU flag */
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .eu-flag {
    margin-top: 10px;
  }
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
  .projects {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
  margin-top: 100px; /* Odstęp od fixed header */
}

.projects h2 {
  font-size: 2.5em;
  color: #003f8f;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.project-item a {
  display: block;
  width: 100%;
}

.project-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.project-item:hover img {
  transform: scale(1.05);
}

/* Responsywność */
@media (max-width: 768px) {
  .projects {
    padding: 40px 15px;
    margin-top: 80px;
  }

  .projects h2 {
    font-size: 2em;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .projects {
    padding: 30px 10px;
    margin-top: 70px;
  }

  .projects h2 {
    font-size: 1.8em;
  }
}
.hero {
    background: #f9f9f9;
    text-align: center;
    padding: 100px 20px;
    margin-top: 100px; 
  }
  
  
:root {
    --header-height: 100px; 
  }
  
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: var(--header-height); 
  }
  
  .hero {
    margin-top: var(--header-height); 
  }
  .hero h1 {
    font-size: 3em;
    color: #003f8f; 
  }
  
  .hero p {
    font-size: 1.2em;
    color: #555; 
  }
  
  .hero .btn {
    margin: 10px 5px;
  }
  
  .hero h1 {
    font-size: 3em;
    color: #003f8f; 
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .highlight-blue {
    color: #003f8f; 
  }
  
  .highlight-red {
    color: #c00; 
  }
  
  
  
  .services {
    padding: 50px 20px;
    background: #f9f9f9; 
    text-align: center;
  }
  
  .services .container {
    width: 90%; 
    max-width: 1400px; 
    margin: 0 auto;
    height: 800px;
  }
  
  .services h2 {
    font-size: 2.5em;
    color: #003f8f; 
    margin-bottom: 30px;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .service-image {
    width: 100%; 
    max-width: 250px; 
    height: auto; 
    margin: 0 auto 15px; 
    display: block; 
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  }
  
  .service-item h3 {
    font-size: 1.5em;
    color: #003f8f;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
  }
  
  .service-item .btn {
    background: #003f8f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s ease;
  }
  
  .service-item .btn:hover {
    background: #c00;
  }
  
  
  
  .features {
    padding: 50px 20px;
    background: #f4f8fc; 
    text-align: center;
  }
  
  .features h2 {
    font-size: 2.5em;
    color: #003f8f; 
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif; 
  }
  
  
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px;
    width: 100%; 
  }
  
  .feature-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%; 
  }
  
  
  .features .container {
    width: 100%; 
    max-width: none; 
    padding: 0; 
  }
  
  .feature-item i.icon {
    font-size: 2.5em;
    color: #c00; 
    margin-bottom: 15px;
  }
  
  .feature-item h3 {
    font-size: 1.8em;
    color: #003f8f; 
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif; 
  }
  
  .feature-item p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555; 
    margin-bottom: 10px;
  }
  
  .feature-item strong {
    color: #c00; 
  }
  
  .feature-item .btn {
    background: #003f8f; 
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease;
  }
  
  .feature-item .btn:hover {
    background: #c00; 
  }
  
  
  @media (min-width: 768px) {
    .feature-grid {
      grid-template-columns: 1fr; 
    }
  }
  
  
  .about-page {
    
    padding: 150px 20px;
  }
  
  .about-page h1 {
    font-size: 2.5em;
    color: #003f8f;
    margin-bottom: 30px;
  }
  
  .timeline p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
  }
  
  .timeline p strong {
    color: #c00; 
  }
  
  .btn-secondary {
    background: #c00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .btn-secondary:hover {
    background: #003f8f;
  }
  
  
  
  
  .product-page {
    padding: 50px 20px;
    text-align: center;
  }
  
  .product-page h1 {
    font-size: 2.5em;
    color: #003f8f;
    margin-bottom: 20px;
  }
  .product-page {
    padding-top: 200px; 
  }
  
  .product-page h1 {
    margin-top: 50px; 
    text-align: center; 
  }
  .product-image {
    width: 50%; 
    max-width: 200px; 
    height: auto; 
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .product-page p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  .product-page ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    margin: 0 auto 20px;
    max-width: 600px;
    color: #555;
  }
  
  .product-page ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
  }
  
  .product-page .btn {
    background: #003f8f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .product-page .btn:hover {
    background: #c00;
  }
  
  
  
  .contact {
    padding: 50px 20px;
    background: #f9f9f9; 
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5em;
    color: #003f8f; 
    margin-bottom: 10px;
  }
  
  .contact-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #003f8f; 
    box-shadow: 0 0 5px rgba(0, 63, 143, 0.3); 
  }
  .blog {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
  }
  
  .blog h2 {
    font-size: 2.5em;
    color: #003f8f;
    margin-bottom: 30px;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog-post {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .blog-post h3 {
    font-size: 1.5em;
    color: #003f8f;
    margin-bottom: 10px;
  }
  
  .blog-post .blog-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
  }
  
  .blog-post p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
  }
  
  .blog-post .btn {
    background: #003f8f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .blog-post .btn:hover {
    background: #c00;
  }

  .featured-image {
    text-align: center; 
    margin: 20px 0; 
  }
  
  .featured-image img {
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  }
  
  .featured-image img:hover {
    transform: scale(1.05); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
  }

  
  .contact-form button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    background: #003f8f; 
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #c00; 
  
  }
  
  footer {
    background: #003f8f; 
    color: #fff; 
    text-align: center;
    padding: 20px 0;
  }
  
  footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
  }
  
  footer .social-links a:hover {
    color: #c00; 
  }
 
.full-width-image {
  width: 500px; 
  overflow: hidden; 
  margin-top: 20px; 
}

.full-width-image img {
  width: 100%; 
  height: auto; 
  display: block; 
}



.image-page {
  padding: 50px 20px;
  text-align: center;
}

.image-page h1 {
  font-size: 2.5em;
  color: #003f8f;
  margin-bottom: 20px;
}


.full-width-image {
  width: 100%; 
  height: auto; 
  display: block; 
  margin: 0 auto; 
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}


.content {
  padding: 20px; 
}


.pulsing-button {
  background-color: #003f8f; 
  color: white; 
  font-size: 1.2em; 
  font-weight: bold; 
  padding: 15px 30px; 
  border: none; 
  border-radius: 10px; 
  cursor: pointer; 
  margin-top: 30px; 
  position: relative; 
  overflow: hidden; 
}


.pulsing-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; 
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5), 
    transparent
  );
  animation: pulse-light 2s infinite; 
}

.container2 img {
  width: 20%; 
  height: auto; 
}
@keyframes pulse-light {
  0% {
    left: -100%; 
  }
  100% {
    left: 100%; 
  }
}


.pulsing-button:hover::before {
  animation: none; 
  background: rgba(255, 255, 255, 0.3); 
}


.pulsing-button:active {
  transform: scale(0.95); 
}
@media (max-width: 768px) {
    
    h1, h2, h3 {
      font-size: 1.8em;
    }
  
    
    .hero {
      padding: 80px 15px;
    }
  
    .hero h1 {
      font-size: 2em;
    }
  
    .hero p {
      font-size: 1em;
    }
  
    
    .product-image,
    .service-image {
      max-width: 90%; 
      margin: 0 auto; 
    }
  
    
    .service-grid {
      grid-template-columns: 1fr; 
    }
  
    
    .contact-form button {
      font-size: 1em; 
      padding: 10px;
    }
  }
  
  
  @media (max-width: 480px) {
    
    h1, h2, h3 {
      font-size: 1.5em;
    }
  
    
    .hero {
      padding: 60px 10px;
    }
  
    .hero h1 {
      font-size: 1.8em;
    }
  
    .hero p {
      font-size: 0.9em;
    }
  
    
    .product-image,
    .service-image {
      max-width: 100%; 
    }
  
    
    header .nav-links {
      flex-direction: column; 
      gap: 10px; 
    }
  
    header .nav-links a {
      font-size: 0.9em; 
    }
  
    
    .contact-form button {
      font-size: 0.9em; 
      padding: 8px;
    }
  }
