 /* Basic Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    
    /* Navigation Styles */
    .navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 10px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    
    .logo-img {
      width: 60px;
      height: 60px;
      margin-right: 15px;
      border-radius: 50%;
      object-fit: cover;
    }
    
    .logo-text {
      font-size: 24px;
      font-weight: 700;
      color: #2a6496;
    }
    
    .logo-text span {
      color: #4CAF50;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
	  align-items: center;
	  
    }
    
    .nav-links li {
      margin-left: 30px;
      position: relative;
      list-style-type: none;
    }
    
    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 16px;
      transition: color 0.3s;
      display: block;
    }
    
    .nav-links a:hover {
      color: #2a6496;
    }
    
    .nav-links a.active {
      color: #2a6496;
      font-weight: 600;
    }
    
    .cta-button2 {
      background-color: #4CAF50;
      color: white;
      padding: 12px 18px;
      border-radius: 4px;
      font-weight: 600;
      transition: background-color 0.3s;
    }
    
    .cta-button {
      display: inline-block;
      background: #1a700c;
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      transition: all 0.3s;
      margin-top: 15px;
      width: 100%;
      text-align: center;
      cursor: pointer;
    }
    
    .cta-button:hover {
      background-color: #3e8e41;
      color: white;
    }
    
    /* Dropdown Styles */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #e6f7ff;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      border-radius: 4px;
      z-index: 1;
      padding: 0;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .dropdown-menu li {
      margin: 0;
      padding: 0;
      background-color: #e6f7ff; 
      border-bottom: 1px solid #e0e0e0;
    }
    
    .dropdown-menu li:first-child {
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
    }
    
    .dropdown-menu li:last-child {
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom: none;
    }
    
    .dropdown-menu a {
      color: #333;
      font-size: 14px;
      display: block;
      padding: 10px 20px;
      transition: background-color 0.2s;
    }
    
    .dropdown-menu a:hover {
      color: #2a6496;
      background-color: #e0e0e0;
    }
    
    .has-dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 34px;
      cursor: pointer;
      z-index: 1001;
      color: #2a6496;
    }
    
    /* Overlay for mobile menu */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    
    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    /* Main Content */
    main {
      flex: 1;
    }
    
    /* Mobile dropdown styles */
    .dropdown-toggle {
      display: none;
      position: relative;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      color: #333;
      cursor: pointer;
      font-size: 16px;
      z-index: 1;
      background: antiquewhite;
    }
    
    /* Responsive Styles */
    @media (max-width: 1850px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease-out;
        z-index: 999;
        overflow-y: auto;
		
      }
      
      .nav-links.active {
        right: 0;
		align-items: initial;
      }
      
      .nav-links li {
        margin: 10px 0; 
        position: relative;
        padding-right: 30px;
        list-style-type: none;
        background-color: #f5f5f5;
        border-radius: 4px;
        padding: 8px 15px;
      }
      
      .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 0;
        margin-top: 5px;
        width: 100%;
        opacity: 1;
        transform: none;
        transition: none;
        background-color: transparent;
      }
      
      .dropdown-menu li {
        margin: 5px 0; 
        background-color: #e6f7ff;
        border-radius: 4px;
        padding: 0;
      }
      
      .dropdown-toggle {
        display: block;
        background: #88addf;
      }
      
      .has-dropdown:hover .dropdown-menu {
        display: none;
      }
      
      .has-dropdown.active .dropdown-menu {
        display: block;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .logo-img {
        width: 50px;
        height: 50px;
      }
      
      .logo-text {
        line-height: 1.2;
        font-size: 20px;
      }
    }
    
    .mobile-menu-btn:active {
      color: #4caf50;
    }
    
    .no-scroll {
      overflow: hidden;
    }