 /* ── Announcement Bar ── */
 .announcement-bar {
     position: fixed;
     /* ✅ fixed so it sits at very top */
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1001;
     /* ✅ above navbar */
     background: var(--themeColor);
     color: var(--secondaryColor);
     text-align: center;
     padding: 9px 20px;
     font-size: 14px;
     font-weight: 500;
     overflow: hidden;
     max-height: 42px;
     opacity: 1;
     transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
 }

 .announcement-bar.hidden {
     max-height: 0;
     opacity: 0;
     padding: 0;
     pointer-events: none;
 }

 .announcement-content {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 14px;
 }

 .announcement-badge {
     font-size: 13px;
     opacity: 0.9;
 }

 .announcement-text strong {
     font-weight: 800;
     letter-spacing: 0.03em;
 }

 /* ── Navbar ── */
 .navbar {
     position: fixed;
     top: 40px;
     /* ✅ sits directly below the 42px announcement bar */
     left: 0;
     width: 100%;
     height: 75px;
     border-radius: 0px;
     background: rgba(248, 249, 251, 0.92);
     backdrop-filter: blur(25px) saturate(180%);
     border-bottom: 1px solid rgba(74, 95, 127, 0.08);
     z-index: 1000;
     transition: top 0.4s ease, height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
         background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
         box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* When bar hides, navbar slides up to top: 0 */
 .navbar.bar-hidden {
     top: 0;
     /* ✅ fills gap left by hidden bar */
 }

 .navbar.scrolled {
     height: 75px;
     background: rgba(248, 249, 251, 0.97);
     box-shadow: 0 4px 30px rgba(26, 35, 50, 0.12);
     border-bottom-color: rgba(74, 95, 127, 0.12);
 }

 /* ── Body padding so content isn't hidden under fixed bars ── */
 body {
     padding-top: calc(42px + 85px);
     /* announcement + navbar height */
     transition: padding-top 0.4s ease;
 }

 body.bar-hidden {
     padding-top: 85px;
     /* ✅ only navbar height when bar is gone */
 }

 /* ── All your existing styles below (unchanged) ── */
 .nav-container {
     height: 100%;
     padding: 0% 10%;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 16px;
     text-decoration: none;
     color: #1a2332;
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     z-index: 10;
 }

 .nav-logo:hover {
     transform: translateY(-3px);
 }

 .logo-text img {
     height: 40px;
 }

 .nav-menu {
     display: flex;
     align-items: center;
     gap: 45px;
     list-style: none;
     flex: 1;
     justify-content: center;
 }

 .nav-item {
     position: relative;
     padding-top: 12px;
 }

 .nav-item a {
     text-decoration: none;
 }

 .nav-link {
     position: relative;
     font-size: 15px;
     font-weight: 500;
     color: #2d3e54;
     text-decoration: none;
     letter-spacing: 0.3px;
     transition: color 0.3s ease;
     display: inline-block;
     padding: 10px 0;
 }

 .link-underline {
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, #6b2711, #9ecb5f);
     transform: translateX(-50%);
     transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     border-radius: 2px;
 }

 .nav-link:hover {
     color: #7d6ba8;
 }

 .nav-link:hover .link-underline {
     width: 100%;
 }

 .nav-actions {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .nav-actions a {
     color: white;
     text-decoration: none;
 }

 .nav-actions .cta-btn {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 12px 26px;
     background: var(--themeColor);
     color: white;
     border: none;
     border-radius: 50px;
     font-family: var(--fontFamilyMulish);
     font-size: 14px;
     font-weight: normal;
     letter-spacing: 0.5px;
     cursor: pointer;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 4px 16px rgba(125, 107, 168, 0.3);
     position: relative;
     overflow: hidden;
 }

 .nav-actions .cta-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.6s ease;
 }

 .nav-actions .cta-btn:hover::before {
     left: 100%;
 }

 .nav-actions .cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 24px rgba(125, 107, 168, 0.4);
 }

 .nav-actions .cta-btn svg {
     width: 18px;
     height: 18px;
     transition: transform 0.3s ease;
 }

 .nav-actions .cta-btn:hover svg {
     transform: translateX(3px);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 24px;
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 0;
     z-index: 1001;
     position: relative;
 }

 .hamburger span {
     display: block;
     height: 3px;
     width: 100%;
     background: #1a2332;
     border-radius: 3px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     transform-origin: center;
 }

 .hamburger.active span:nth-child(1) {
     transform: translateY(10.5px) rotate(45deg);
     background: #7d6ba8;
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
     transform: translateX(-30px);
 }

 .hamburger.active span:nth-child(3) {
     transform: translateY(-10.5px) rotate(-45deg);
     background: #7d6ba8;
 }

 .mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(26, 35, 50, 0.7);
     backdrop-filter: blur(12px);
     opacity: 0;
     visibility: hidden;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 998;
 }

 .mobile-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-sidebar {
     position: fixed;
     top: 0;
     left: 0;
     font-family: var(--fontFamilyMulish);
     width: 300px;
     height: 100vh;
     background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
     box-shadow: 4px 0 50px rgba(26, 35, 50, 0.2);
     transform: translateX(-100%);
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 9999;
     overflow-y: auto;
     display: flex;
     flex-direction: column;
 }

 .mobile-sidebar.active {
     transform: translateX(0);
 }

 .mobile-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 28px;
     border-bottom: 1px solid rgba(125, 107, 168, 0.1);
     position: sticky;
     top: 0;
     z-index: 10;
 }

 .mobile-logo {
     display: flex;
     align-items: center;
     gap: 14px;
     text-decoration: none;
     color: #1a2332;
 }

 .close-btn {
     width: 42px;
     height: 42px;
     border: none;
     background: var(--themeColor);
     color: white;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .close-btn svg {
     width: 22px;
     height: 22px;
 }

 .close-btn:hover {
     transform: rotate(90deg);
 }

 .mobile-nav {
     flex: 1;
     padding: 15px 0;
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .mobile-sidebar a {
     text-decoration: none;
 }

 .mobile-link {
     display: flex;
     align-items: center;
     gap: 18px;
     padding: 10px 28px;
     color: #2d3e54;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
 }

 .mobile-link::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 4px;
     height: 100%;
     background: var(--themeColor);
     transform: scaleY(0);
     transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .mobile-link:hover::before {
     transform: scaleY(1);
 }

 .mobile-link:hover {
     background: rgba(125, 107, 168, 0.05);
     color: #7d6ba8;
 }

 .mobile-link-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .mobile-link-title {
     font-size: 17px;
     font-weight: 600;
     letter-spacing: 0.2px;
 }

 .mobile-link-desc {
     font-size: 13px;
     font-weight: 400;
     color: #4a5f7f;
     opacity: 0.8;
 }

 .mobile-arrow {
     width: 20px;
     height: 20px;
     color: #4a5f7f;
     transition: all 0.3s ease;
     opacity: 0.5;
 }

 .mobile-link:hover .mobile-arrow {
     transform: translateX(5px);
     opacity: 1;
     color: #7d6ba8;
 }

 .mobile-footer {
     padding: 28px;
     border-top: 1px solid rgba(125, 107, 168, 0.1);
 }

 .mobile-contact {
     padding: 20px 0;
     border-bottom: 1px solid rgba(125, 107, 168, 0.08);
     margin-bottom: 20px;
 }

 .contact-title {
     font-size: 13px;
     font-weight: 600;
     color: #4a5f7f;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 12px;
 }

 .contact-link {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 0;
     color: #2d3e54;
     text-decoration: none;
     font-size: 15px;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .contact-link:hover {
     color: #7d6ba8;
 }

 .mobile-social {
     display: flex;
     gap: 12px;
     justify-content: center;
 }

 .social-link {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: var(--themeColor);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .social-link:hover {
     background: #7d6ba8;
     transform: translateY(-3px);
 }

 /* ── Responsive ── */
 @media (max-width: 968px) {
     .navbar {
         height: 70px;
         top: 42px;
     }

     .navbar.bar-hidden {
         top: 0;
     }

     .navbar.scrolled {
         height: 65px;
     }

     body {
         padding-top: calc(42px + 70px);
     }

     body.bar-hidden {
         padding-top: 70px;
     }

     .nav-menu,
     .nav-actions .cta-btn {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .nav-container {
         padding: 0 30px;
     }
 }

 @media (max-width: 480px) {
     .mobile-sidebar {
         width: 100%;
     }

     .nav-container {
         padding: 0 20px;
     }

     .announcement-bar {
         font-size: 12px;
         padding: 9px 10px;
     }

     .announcement-badge {
         display: none;
     }
 }


 .PrivacySection h4 {
     font-weight: bold;
     padding-top: 15px;
     font-size: 20px;
     color: var(--themeColor);
     letter-spacing: 1px;
     font-family: var(--fontFamilyMarcellus);
 }

 .PrivacySection h5 {
     font-weight: normal;
     padding-bottom: 15px;
     font-size: 16px;
     font-family: var(--fontFamilyMulish);
     line-height: 25px;
 }