 body {
 background-color: #e4d9da;
 font-family: Arial, sans-serif;
 line-height: 1.6;
 }

 header {
 position: sticky;
 top: 0;
 z-index: 1000;
 background: #e4d9da;
 }

 .top-bar {
 display: flex;
 justify-content: space-between;
 align-items: end;
 padding: 0.4rem 1rem;
 background: #e4d9da;
 }

 .top-icons {
 display: flex;
 gap: 1rem;
 }

 .top-icons a {
 text-decoration: none;
 font-size: 1.2rem;
 }

 .top-btn {
 background: #2F476D;
 color: white;
 padding: 0.3rem 0.7rem;
 border-radius: 4px;
 text-decoration: none;
 }

 .top-btn:hover {
 background: #1F3354;
 } 

 .nav-container {
 position: relative;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1rem;
  transition: box-shadow 0.2s ease;
 border-bottom: 1px solid rgba(0,0,0,0.05);
 }

.nav-container.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

 .nav-left img {
 height: 80px;
 }

 .menu-toggle {
 font-size: 1.5rem;
 cursor: pointer;
 }

 .mobile-menu {
 display: none;
 flex-direction: column;
 position: fixed;
 top: 15%;
 right: 0;
 width: auto;
 height: 30vh;
 background: white;
 padding: 1.5rem;
 z-index: 999;
 }
 
 .mobile-menu a {
 padding: 0.8rem 0;
 text-decoration: none;
 color: #2F476D; 
 font-weight: bold;
 transition:background 0.15s ease;
 border-radius: 6px;
 padding: 6px 10px;
 }

 .mobile-menu.active {
 display: flex;
 background-color: white;
 transform: scale(0.97);
 box-shadow: 0 2px 6px rgba(0,0,0,0.12);
 }

.btn-primary {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  background: #2F476D;
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  box-sizing: border-box;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #1F3354;
  transform: scale(1.03);
}


 @media (min-width: 768px) {

 .menu-toggle {
 display: none;
 }

 .nav-container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: nowrap;
 }

 .nav-left {
 flex: 0 0 auto;
 }

.mobile-menu {
 font-size: 1.3rem;
 flex: 1;
 display: flex !important;
 justify-content: flex-end;
 flex-direction: row;
 position: static;
 height: auto;
 width: auto;
 background: none;
 padding: 0;
 gap: 20px;
 margin-left: auto;
 }

 .mobile-menu a {
 padding: 0;
 }

 .mobile-menu a {
 transition: all 0.2s ease;
 border-radius: 6px;
 padding: 6px 10px;
 }
 
 .mobile-menu a:hover {
 background: rgba(0, 0, 0, 0.06);
 box-shadow: 0 2px 6px rgba(0,0,0,0.12);
 }

  .btn-primary {
    display: inline-block;
    width: auto;
    padding: 12px 22px;
  }
