body {
    margin: 0;
    font-family: Playwrite Polska;
  }
  
  .h2{
    font-family: Playwrite Polska;
  }
  .navbar {
    background-color: #1976d2;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
  
  .navbar .logo img {
    height: 50px;
    margin-right: 10px;
  }
  
  .navbar .title {
    font-family: monospace;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    color: inherit;
    margin-right: 500px;
  }
  
  .navbar .menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  .navbar .menu-items {
    display: flex;
    gap: 20px;
  }
  
  .navbar .menu-items a {
    color: inherit;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s;
  }
  
  .navbar .menu-items a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }
  
  .navbar .icons {
    display: flex;
    gap: 10px;
  }
  
  .navbar .icons a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  @media (max-width: 768px) {
    .navbar .menu-toggle {
      display: block;
    }
    
    .navbar .menu-items {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #1976d2;
      width: 100%;
      padding: 10px 0;
      z-index: 1000;
    }
  
    .navbar .menu-items.active {
      display: flex;
    }
  
    .navbar .menu-items a {
      padding: 10px 20px;
    }
  }
  


  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  #home {
    text-align: center;
    padding: 20px;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  #home {
    text-align: center;
    padding: 20px;
  }
  

/* home */
  .carousel-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-item {
    min-width: 100%;
    transition: opacity 0.5s ease;
  }
  
  .carousel-item img {
    width: 100%;
    height: auto;
  }
  
  .carousel-item:not(.active) {
    display: none;
  }
  
  p {
    font-size: 18px;
    color: #ffffff;
  }
  
  .section {
    padding: 20px;
    background-color: #f2f2f2;
    margin: 20px 0;
  }
  
  /* about */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .about {
    text-align: center;
  }
  
  .about-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .card-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .card {
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
  
  .card-subtitle {
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 15px;
  }
  
  .card-text {
    font-size: 1em;
    color: #333;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .card-group {
      flex-direction: column;
    }
  
    .card {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  
    .card:last-child {
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 480px) {
    .about-heading {
      font-size: 2em;
    }
  
    .card-body {
      padding: 15px;
    }
  
    .card-title {
      font-size: 1.1em;
    }
  }

  /* services */
  .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #026897;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .col {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    justify-content: center;
  }
  
  .card {
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card-img-top {
    width: 100%;
    height: auto;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
  
  .card-text {
    font-size: 1em;
    color: #333;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .col {
      flex: 1 1 calc(50% - 20px);
    }
  }
  
  @media (max-width: 576px) {
    .col {
      flex: 1 1 100%;
    }
  }


  .contact-form {
    max-width: 380px;
    margin:  20px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #555;
}


/* Responsive Design */
@media only screen and (max-width: 768px) {
    .contact-form {
        padding: 10px;
    }
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 8px;
    }
}

@media only screen and (max-width: 600px) {
    .contact-form {
        width: 90%;
    }
    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 14px;
        padding: 6px;
    }
    button {
        padding: 8px 16px;
    }
}


  
footer {
  background-color: #01417d;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h3 {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-media {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.social-media a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
}

.social-media a:hover {
  color: #ddd;
}

.bg-light {
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    max-width: 300px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Playwrite+PL:wght@100..400&display=swap');