 html, body {
      -webkit-text-size-adjust: 100%;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
      width: 100%;
      overflow-x: hidden;
    }

    *, *:before, *:after {
      box-sizing: inherit;
    }

    body {
      min-height: 100vh;
      margin: 0;
      padding: 0;
      color: white;
      line-height: 1.6;
      background: url('/images/header.png') no-repeat center center fixed;
      background-size: cover;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      body {
        background-attachment: scroll;
      }
    }

    @media (max-width: 768px) {
      .logo-container {
        width: 100%;
      }
    }

    .logo-container {
      border: 2px dashed white;
      border-radius: 15px;
      padding: 30px;
      height: auto;
      width: 100%;
      max-width: 650px;
      margin: 0 auto;
    }

    header {
      background: url('/images/header.png') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 20px 0;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: dashed 2px white;
      transition: box-shadow 0.3s ease;
    }

    header.sticky {
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 10px;
      flex-wrap: wrap;
      animation: slideFadeIn 0.6s ease-out;
      flex-direction: row;
      text-align: center;
    }

    nav ul.active {
      animation: slideFadeIn 0.4s ease-out;
    }

    nav ul li {
      opacity: 0;
      animation: fadeInItem 0.5s forwards;
    }

    nav ul li:nth-child(1) { animation-delay: 0.2s; }
    nav ul li:nth-child(2) { animation-delay: 0.4s; }
    nav ul li:nth-child(3) { animation-delay: 0.6s; }

    nav a {
      color: white;
      text-decoration: none;
    }

    #hero-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      max-width: 650px;
      margin: 20px auto;
      flex-wrap: row;
    }

    .hero-box {
      flex: 1 1 100%;
      background: rgba(0, 122, 204, 0.2);
      color: white;
      padding: 20px;
      text-align: center;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    section {
      padding: 20px 10px;
      max-width: 900px;
      margin: auto;
    }

    .service-box {
      font-size: medium;
      border: 2px dashed white;
      border-radius: 15px;
      padding: 50px;
      margin-top: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      flex: 1 1 45%;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    input, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    button {
      padding: 10px;
      background: #007acc;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: none;
      color: white;
    }

    .services-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-right: 10px;
    }

    .services-container2 {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1000px;
      margin: auto;
      padding: 10px 0;
    }

    .service-box2 {
      flex: 1 1 30%;
      border: 2px dashed white;
      border-radius: 15px;
      padding: 30px;
      background: rgba(0, 0, 0, 0.2);
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
      color: white;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        background-color: transparent;
        padding: 10px 0;
        animation: none !important;
      }

      nav ul li {
        opacity: 1 !important;
        animation: none !important;
      }

      #hero-container {

        flex-direction: row;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	gap: 20px;
	}
.hero-box { flex: 1 1 300px; /* or 45%, 48%, etc. */
}

      .services-container {
        display: flex;
      gap: 0px;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-left: -10px;
      }

      .service-box {
 font-size: medium;
      border: 2px dashed white;
      border-radius: 15px;
      padding: 50px;
      margin-top: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      flex: 1 1 45%;

      }

      .services-container2 {
        flex-direction: column;
      }

      .service-box2 {
        flex: 1 1 100%;
      }

      section {
        padding: 20px;
      }

      #hero {
        padding: 20px;
      }
    }

    @keyframes slideFadeIn {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInItem {
      to {
        opacity: 1;
      }
    }

    .sticky-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      text-align: center;
      padding: 10px 0;
      font-size: 14px;
      z-index: 9999;
      backdrop-filter: blur(5px);
      box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
    }
