
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #fff;
      color: #333;
    }
    /* Header */
    header {
      background: #fff;
      border-bottom: 2px solid #f97316;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 50px;
    }
    header img {
      height: 50px;
    }
    nav a {
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
      color: #333;
    }
    nav a:hover {
      color: #f97316;
    }

    /* Hero */
    .hero {
      background: url('https://images.unsplash.com/photo-1529101091764-c3526daf38fe?ixlib=rb-4.0.3&q=80&w=2000') no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 120px 20px;
    }
    .hero h1 {
      font-size: 3em;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 1.3em;
      max-width: 700px;
      margin: auto;
    }
    .btn {
      display: inline-block;
      margin-top: 20px;
      background: #f97316;
      color: white;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }

    /* Sections */
    section {
      padding: 60px 20px;
      max-width: 1100px;
      margin: auto;
    }
    section h2 {
      text-align: center;
      color: #f97316;
      margin-bottom: 30px;
      font-size: 2em;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background: #fff;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-align: center;
    }
    .card img {
      width: 100%;
      border-radius: 6px;
      margin-bottom: 15px;
      height: 180px;
      object-fit: cover;
    }

    #logo {
        height: 10vh;
        width: 14%;
    }
    #favicon {
        height: 100%;
        width: 100%;

    }
    #icon {
        height: 100vh;
        width: 100%;

    }

    /* Footer */
    footer {
      background: #f97316;
      color: white;
      text-align: center;
      padding: 25px;
    }
    footer a {
      color: white;
      margin: 0 10px;
      text-decoration: none;
    }
