/* General styles */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header styles */
  header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /* height: 80px; */
    padding: 0 20px;
    background-color: #3264c7;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  header h2 {
    /* flex: 1 100%; */
    text-align: center;
  }
  
  .logo img {
    max-height: 60px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    margin-left: 20px;
    padding: 5px;
  }
  header ul li:hover {
    color: yellow;
    border: 1px solid yellow;
    border-radius: 5px;
  }
  
  nav a {
    font-weight: bold;
  }
  
  /* Slider styles */
  .slider-container {
    position: relative;
    margin-bottom: 40px;
    margin-top: 10px;
  }
  
  .slider {
    display: flex;
    overflow: hidden;
  }
  .contacts,
  .products {
    text-align: center;    
  }
  .products ul li {
    list-style-type: none;
    font-size:large;
  }
  .slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .slider-controls button {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  
  .slider-controls button:hover {
    background-color: #333;
    color: #fff;
  }
  
  .prev {
    margin-left: 20px;
  }
  .next {
    margin-right: 20px;
  }
  
  /* Main section styles */
  .about {
    margin-bottom: 40px;
  }
  
  .about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .about p {
    margin-bottom: 20px;
  }
  
  .about ul {
    margin-bottom: 20px;
  }
  
  .about ul li {
    margin-bottom: 10px;
  }
  
  .map {
    height: 500px;
    margin-bottom: 40px;
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  footer {
    background-color: #3264c7;
    color: #fff;
    padding: 10px;
    text-align: center;
  }
  footer a {
      color: white;
  }
  
  @media screen and (max-width: 600px) {
    header {
      display: block;
      text-align: center;
    }
    header h2 {
      margin-top: 5px;
    }
  
    .logo {
      margin-bottom: 10px;
      padding-top: 10px;
    }
  
    nav {
      margin-top: 20px;
    }
  }
  