/* CSS Document */


    body {
      font-family: Verdana, Arial, Helvetica, sans-serif;
      background-color: #fff;
      margin: 0;
      padding: 0;
    }

    header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      max-width: 1000px;
      margin: 0 auto;
      padding: 10px;
    }

    .logo {
      max-width: 240px;
      height: auto;
    }

    .contact-info {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 15px;
      font-size: 14px;
    }

    .contact-info img {
      width: 28px;
      height: 28px;
      vertical-align: middle;
    }

    nav {
      background: #000;
    }

    nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0;
      padding: 0;
    }

    nav li {
      margin: 5px 15px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #00aaff;
    }

    .banner {
      background: #b0dfe8;
      height: 8px;
    }

    main {
      max-width: 1000px;
      margin: 30px auto;
      padding: 0 15px;
      text-align: center;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .features img {
      width: 100%;
      max-width: 350px;
      height: auto;
    }

    footer {
      background-color: #000;
      color: #fff;
      font-size: 12px;
      padding: 20px 10px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1000px;
      margin: 0 auto;
      gap: 20px;
    }

    .footer-content img {
      width: 80px;
      height: auto;
    }

 @media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }

  nav ul {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}