* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: #f5f9ff;
    color: #222;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d6efd;
    padding: 1rem 2rem;
    color: white;
    position: relative;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Hamburger Icon */
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* Header Content */
  header {
    background: #0d6efd;
    color: white;
    text-align: center;
    padding-bottom: 2rem;
  }
  
  .header-content {
    padding: 2rem 1rem;
  }
  
  .header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .header-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .header-content a {
    background: white;
    color: #0d6efd;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* Sections */
  section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
  }
  
  section h2 {
    color: #0d6efd;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  /* Grid */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Contact Form */
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .contact-form button {
    background: #0d6efd;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    background: #0d6efd;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      background: #0d6efd;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      display: none;
      padding: 1rem 2rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  }
  