* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
      }

      body {
        line-height: 1.6;
      }

      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background: #111;
        color: rgb(255, 102, 0);
      }

      .logo {
        font-size: 24px;
        font-weight: bold;
      }

      nav ul {
        display: flex;
        list-style: none;
        gap: 20px;
      }

      nav ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
      }

      .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
      }

      .hero {
        height: 80vh;
        background: url("https://picsum.photos/1200/800") no-repeat center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
      }

      .hero h1 {
        font-size: 48px;
      }

      .hero button {
        margin-top: 20px;
        padding: 10px 20px;
        border: none;
        background: #ff6600;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
      }

      footer {
        background: #111;
        color: #fff;
        text-align: center;
        padding: 20px;
        margin-top: 20px;
      }

@media (max-width: 768px) {
        nav ul {
          position: absolute;
          top: 60px;
          left: 0;
          width: 100%;
          flex-direction: column;
          background: #111;
          display: none;
        }

        nav ul.active {
          display: flex;
        }

        .menu-toggle {
          display: block;
        }
      }

      .highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 50px 20px;
        background: #f9f9f9;
        text-align: center;
      }

      .highlight {
        background: #fff;
        border-radius: 15px;
        padding: 20px;
        border: 1px solid #eee;
        transition: 0.3s;
      }

      .highlight img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
      }

      .highlight h2 {
        margin: 15px 0 10px;
        font-size: 22px;
      }

      .highlight p {
        color: #555;
        font-size: 15px;
      }

      .highlight:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      .footer {
        background: #111;
        color: #ccc;
        padding-top: 40px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 30px 30px;
      }

      .footer-section h2,
      .footer-section h3 {
        color: #ff6600;
        margin-bottom: 10px;
      }

      .footer-section p {
        font-size: 14px;
        margin: 5px 0;
      }

      .footer-link {
        display: inline-block;
        margin-top: 10px;
        color: #ff6600;
        text-decoration: none;
        font-weight: bold;
      }

      .footer-link:hover {
        text-decoration: underline;
      }


      .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
      }

      .social-icons img {
        width: 30px;
        height: 30px;
        filter: grayscale(100%);
        transition: 0.3s;
      }

      .social-icons img:hover {
        filter: none;
        transform: scale(1.2);
      }


      .footer-bottom {
        text-align: center;
        padding: 15px;
        background: #0a0a0a;
        font-size: 13px;
        border-top: 1px solid #222;
      }


      @media (max-width: 768px) {
        .footer-container {
          text-align: center;
        }

        .social-icons {
          justify-content: center;
        }
      }