/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
  }
  
  .header {
    background: white;
    padding: 10px 30px;
  }
  
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .logo-container img {
    width: 176px;
    height: 76px;
    object-fit: contain;
  }
  
  .nav-desktop {
    display: flex;
    justify-content: center;
    flex: 1;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-menu li a {
    text-decoration: none;
    color: #2b2074;
    font-weight: bold;
    font-size: 16px;
  }
  

  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #269eff;
  }
  
  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999; 
  }
  
  .nav-mobile ul {
    list-style: none;
    padding: 0;
  }
  
  .nav-mobile ul li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
  }
  
  .nav-mobile ul li a {
    text-decoration: none;
    color: #2b2074;
    font-weight: bold;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-desktop {
      display: none;
    }
  
    .contact-btn {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-mobile.show {
      display: block;
    }
  }
  