:root {
    --Almost-White: hsl(0, 0%, 98%);
    --Medium-Gray: hsl(0, 0%, 41%);
    --Almost-Black: hsl(0, 0%, 8%);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: var(--Almost-White);
    color: var(--Almost-Black);
  }
  
  /* Navigation */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
  }
  
  .nav-ul {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-btn button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--Medium-Gray);
    margin-left: 1rem;
  }
  
  .nav-btn button:nth-child(2) {
    padding: 8px 20px;
    border: 1px solid black;
    border-radius: 10px;
  }
  
  a {
    text-decoration: none;
    color: var(--Medium-Gray);
  }
  
  a:hover,
  .dropbtn:hover,
  button:hover {
    color: var(--Almost-Black);
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 10;
  }
  
  .dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    color: black;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 4rem auto;
    align-items: center;
    padding: 0 2rem;
  }
  
  h1 {
    font-size: 3.5rem;
    max-width: 500px;
    line-height: 1.2;
  }
  
  .info {
    color: var(--Medium-Gray);
    margin: 1.5rem 0;
    font-size: 1.125rem;
  }
  
  .hero button {
    background: black;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
  }
  
  .hero button:hover {
    background: transparent;
    color: gray;
    border: 1px solid black;
  }
  
  .logos {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
  }
  
  .img-container img {
    width: 100%;
    display: block;
  }
  
  /* Mobile Menu */
  .han {
    display: none;
  }
  
  .overlay {
    display: none;
  }
  
  .mobile-nav {
    display: none;
  }
  
  /* Media Queries */
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .img-container {
      order: -1;
    }
  
    h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      max-width: 100%;
    }
  
    .logos {
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }
  
    .img-container img {
      content: url("assets/image-hero-mobile.png");
      max-width: 100%;
    }
  
    .nav-ul,
    .nav-btn {
      display: none;
    }
  
    .han {
      display: block;
    }
  
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9;
    }
  
    .mobile-nav {
      display: flex;
      flex-direction: column;
      background: white;
      position: fixed;
      top: 0;
      right: 0;
      width: 250px;
      height: 100vh;
      padding: 2rem;
      z-index: 10;
      box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    }
  
    .mobile-nav img#close-menu {
      align-self: flex-end;
      cursor: pointer;
      margin-bottom: 2rem;
    }
  
    .mobile-nav-con {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .dropdown-content {
      position: static;
      box-shadow: none;
      background: transparent;
      padding: 0;
    }
  
    .dropdown:hover .dropdown-content {
      display: block;
    }
  }
  