        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            min-height: 100vh; /* Extra height to demonstrate scrolling */
        }

        header {
            background-color: white;
            position: sticky;
            top: 0;
            width: 100%;
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(8, 6, 6, 0.1);
        }

        .scrolled {
            background-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 50px;
            display: flex;
            align-items: center;
            padding-left: 200px;
        }

        .logo img {
            height: 100%;
        }

        nav {
            display: flex;
            align-items: center;
            padding-right: 200px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav-links a.active {
            font-weight: bold;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #333;
            bottom: 0;
            left: 0;
        }

        .nav-links a:hover {
            color: #666;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 24px;
            width: 30px;
            position: relative;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #333;
            transition: all 0.3s ease;
            position: absolute;
            left: 0;
        }
        
        .hamburger span:nth-child(1) {
            top: 0;
        }
        
        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }
        
        .hamburger span:nth-child(3) {
            bottom: 0;
        }
        
        .hamburger.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Mobile view */
        @media (max-width: 768px) {
            header{
              margin-top: -10px;
              margin-left: -10px;
              width: 105%;
            }
            .hamburger {
                display: flex;
            }

            .logo {
                padding-left: 10;
            }

            nav {
                padding-right: 10;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: rgba(255, 255, 255, 0.4);
                backdrop-filter: blur(10px);
                padding: 1rem;
                gap: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                align-items: center;
                text-align: center;
            }

            .nav-links li {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .nav-links a {
                display: inline-block;
                width: auto;
            }

            .nav-links.active {
                transform: translateY(0);
            }
        }

    
    .form-wrapper {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      font-family: 'Inter', Arial, sans-serif;
    }
    
    form {
      background: linear-gradient(to bottom right, #ececec, #f5f5f5);
      border-radius: 5px;
      padding: 3rem;
      width: 100%;
      box-shadow: 0 25px 45px rgba(0,0,0,0.1);
      font-family: Arial, Helvetica, sans-serif;
      margin-top: 40px;
      
    }
    
    h1 {
      font-weight: 400;
      font-size: 1.875rem;
      color: #222222;
      margin: 0 0 0.5rem 0;
      padding-bottom: 20px;
    }
    
    p {
      font-size: 0.75rem;
      color: #000000;
      margin: 0 0 1.5rem 0;
      max-width: 400px;
      line-height: 1.5;
      padding-bottom: 15px;
    }
    
    .flex-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .flex-row > div {
      flex: 1 1 45%;
      position: relative;
    }
    
    .input-container {
      display: block;
      margin-bottom: 1rem;
      position: relative;
      
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
      width: 100%;
      border-radius: 0.375rem;
      background-color: #fff;
      border: none;
      padding: 0.75rem 1rem;
      font-size: 0.75rem;
      font-weight: 100;
      color: #000000;
      outline-offset: 2px;
      outline-color: transparent;
      transition: outline-color 0.2s ease;
      font-family: 'Inter', Arial, sans-serif;
    }
    
    input::placeholder,
    textarea::placeholder,
    select option:first-child {
      color: #000000;
      opacity: 0.7;
      font-weight: 300;
      
    }
    
    input:focus,
    select:focus,
    textarea:focus {
      outline-color: #222222;
      outline-style: solid;
      outline-width: 2px;
    }
    
    textarea {
      resize: none;
      min-height: 6rem;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    
    }
    
    .icon {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.75rem;
      color: #222222;
      pointer-events: none;
    }
    
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      padding-right: 2rem;
      cursor: pointer;
    }
    
    .select-icon {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      font-size: 0.75rem;
      color: #222222;
    }
    
    .button-container {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
    }
    
    button[type="submit"] {
      background-color: #fff;
      border: 1.5px solid #000;
      color: #000;
      font-weight: 600;
      font-size: 0.75rem;
      padding: 0.75rem 1.5rem;
      border-radius: 0.375rem;
      cursor: pointer;
      width: 100%;
      max-width: 160px;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-family: 'Inter', Arial, sans-serif;
    }
    
    button[type="submit"]:hover,
    button[type="submit"]:focus {
      background-color: #000;
      color: #fff;
      outline: none;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      form {
        padding: 1.5rem;
        padding-top: 20px;
      }
      
      h1 {
        font-size: 1.5rem;
        padding-bottom: 15px;
      }
      
      p {
        font-size: 0.7rem;
        margin-bottom: 1.2rem;
        padding-bottom: 15px;
      }
    }
    
    @media (max-width: 640px) {
      .flex-row > div {
        flex: 1 1 100%;
      }
      
      form {
        padding: 1.25rem;
      }
      
      h1 {
        font-size: 1.25rem;
        padding-bottom: 10px;
      }
      
      button[type="submit"] {
        max-width: 140px;
        padding: 0.625rem 1.25rem;
      }
    }
    
    @media (max-width: 480px) {
      body {
        padding: 0.5rem;
      }
      
      form {
        border-radius: 4px;
        padding: 1rem;
      }
      
      .button-container {
        margin-top: 1rem;
      }
      
      button[type="submit"] {
        max-width: 120px;
      }
    }





.custom-footer {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  margin-top:30px;
} 

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 160px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-link {
  padding: 5px 18px;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  width: fit-content;
  transition: all 0.3s ease;
  margin-left: 30px;
}

.quick-link:hover {
  background-color: #000;
  color: #fff;
}

.footer-right p {
  margin: 6px 0;
  font-size: 14px;
  color: #333;
}

.footer-right a {
  color: #000;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: 17px;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .quick-link {
    margin-left: 0;
  }
  
  .social-icons {
    justify-content: center;
    margin-left: 0;
  }
}