<style>
  /* Body and content spacing */
  body {
    padding-top: 0 !important;
    margin: 0;
  }
  
  
  
  /* Heading scroll margin */
  h1, h2, h3, h4, .page-title, .entry-title, .section-title, [class*="title"] {
    scroll-margin-top: 20px;
  }
  
  /* Modal animation */
  @keyframes modalSlide {
    from {
      opacity: 0;
      transform: scale(0.95) translateY(-20px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  
  .animate-modal-slide {
    animation: modalSlide 0.3s ease-out;
  }
  
  /* Custom scrollbar */
  .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
  }
  
  /* Mobile search expand */
  @media (max-width: 640px) {
    .search-expand-container {
      position: fixed !important;
      top: 8px !important;
      right: 60px !important;
      left: auto !important;
      transform: none !important;
      width: auto !important;
      max-width: calc(100vw - 80px) !important;
      z-index: 10000 !important;
      background: #001a3d !important;
    }
    
    .search-expand-container form input {
      min-width: 140px !important;
      width: 140px !important;
      padding: 6px 12px !important;
      font-size: 12px !important;
    }
  }
  
  /* Mobile menu styles */
  #mobileMenu {
    transition: all 0.3s ease-in-out;
  }
  
  #mobileMenu.hidden {
    display: none !important;
  }
  
  #mobileMenu:not(.hidden) {
    display: flex !important;
  }
  
  .mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: white;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
  .mobile-dropdown summary::-webkit-details-marker {
    display: none;
  }
  
  /* Dropdown menu styles */
  .dropdown-menu {
    backdrop-filter: blur(10px);
  }
</style>