   /* ==========================================================================
       1. IMPORTS, RESET, & VARIABLES
       ========================================================================== */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: poppins;
       z-index: 1;
   }

   :root {
       --background: #F6F2EE;
       --background2: #46483B;
       --primary-color: #46483B;
       --secondary-color: #273041;
       --text-on-primary: #CDB028;
       --text-on-secondary: #000000;
       --discount-color: #e74c3c;
       --discount-bg: #ffebee;
       --font2: "cinzel";
       --font1: "poppins";
       --primary-color-invert: #FFFFFF;
   }

   html {
       scroll-padding-top: 80px;
       scroll-behavior: smooth;
   }

   html,
   body {
       background-color: whitesmoke;
       width: 100%;
       height: auto;
       margin: 0px;
       padding: 0px;
       overflow-x: hidden;
       min-height: 100vh;
       font-size: 16px;
       color: var(--background2);
   }

   /* Helper Class */
   .hidden {
       opacity: 0;
   }

   body.popup-open {
       overflow: hidden;
   }

   /* ==========================================================================
       2. GLOBAL ELEMENTS
       ========================================================================== */
   a {
       text-decoration: none;
       transition: color 0.1s ease;
   }

   img {
       max-width: 100%;
       height: auto;
       display: block;
   }

   .container {
       width: 100%;
       margin: 0 auto;
       padding: 0 20px;
       max-width: 100%;
   }

   .btn {
       background-color: var(--text-on-primary);
       color: var(--background);
       padding: 12px 24px;
       text-decoration: none;
       border-radius: 8px;
       border: none;
       cursor: pointer;
       font-weight: 600;
       display: inline-block;
       text-align: center;
       transition: background-color 0.3s ease;
   }

   .section-title h2 {
       font-size: 3.3vw;
       color: white;
       font-family: var(--font2);
       text-transform: uppercase;
       letter-spacing: 1px;
       align-items: flex-start;
       position: relative;
       width: 100%;
       font-weight: normal;
       text-align: center;
   }

   /* ==========================================================================
       3. HEADER (DESKTOP & MOBILE BASE)
       ========================================================================== */
   header {
       background-color: #46483B;
       color: #CDB028;
       width: 100%;
       position: fixed;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
       z-index: 9999;
   }

   /* Desktop Header */
   .desktop-header {
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 20px 0;
       min-height: 70px;
       justify-content: space-evenly;
   }

   .header-nav {
       padding: 0 15px;
   }

   .header-nav.logo {
       flex: 1;
       font-family: 'Cinzel';
       font-size: 28px;
       font-weight: 600;
       letter-spacing: 1px;
   }

   .header-logo {
       color: #CDB028;
       text-decoration: none;
       font-family: 'Cinzel';
       font-weight: 400;
       font-size: 40px;
       padding: 8px 0;
       position: relative;
       transition: all 0.3s ease;
       margin-left: 5vw;
   }

   .nav-link {
       color: #CDB028;
       text-decoration: none;
       font-family: 'Poppins';
       font-weight: 400;
       font-size: 26px;
       padding: 8px 0;
       position: relative;
       transition: all 0.3s ease;
   }

   .nav-link:hover {
       opacity: 0.8;
       transform: translateY(-2px);
   }

   .header-nav:not(.logo) .nav-link::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 0;
       height: 2px;
       background-color: #CDB028;
       transition: width 0.3s ease;
   }

   .header-nav:not(.logo) .nav-link:hover::after {
       width: 100%;
   }

   /* Mobile Header Base Styles */
   .mobile-header {
       display: none;
       align-items: center;
       justify-content: space-between;
       padding: 15px 0;
       min-height: 70px;
   }

   .mobile-logo {
       display: flex;
       align-items: center;
   }

   .logo-img {
       height: 40px;
       width: auto;
   }

   .hamburger-menu {
       background: none;
       border: none;
       color: #CDB028;
       font-size: 24px;
       cursor: pointer;
       padding: 5px;
       transition: all 0.3s ease;
   }

   .mobile-header-icons {
       display: flex;
       align-items: center;
       gap: 15px;
   }

   .header-icon {
       color: #CDB028;
       font-size: 20px;
       cursor: pointer;
   }

   /* Mobile Navigation Menu */
   .mobile-nav {
       position: fixed;
       top: 0;
       left: -100%;
       width: 280px;
       height: 100vh;
       background-color: white;
       box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
       transition: left 0.4s ease;
       z-index: 1100;
       padding: 80px 30px 30px;
       overflow-y: auto;
   }

   .mobile-nav.active {
       left: 0;
       z-index: 9999;
   }

   .mobile-nav-close {
       position: absolute;
       top: 20px;
       right: 20px;
       background: none;
       border: none;
       font-size: 1.8rem;
       color: var(--primary-color);
       cursor: pointer;
       padding: 5px;
   }

   .mobile-nav-links {
       list-style: none;
       margin-bottom: 30px;
   }

   .mobile-nav-links li {
       margin-bottom: 15px;
   }

   .mobile-nav-links a {
       display: block;
       color: var(--text-color);
       text-decoration: none;
       font-size: 1.2rem;
       font-weight: 600;
       padding: 12px 15px;
       border-radius: 6px;
       transition: all 0.3s ease;
   }

   .mobile-nav-links a:hover {
       color: var(--secondary-color);
       background-color: rgba(231, 76, 60, 0.1);
   }

   .mobile-nav-icons {
       display: flex;
       justify-content: center;
       gap: 20px;
       margin-top: 30px;
   }

   .mobile-nav-icon {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 50px;
       height: 50px;
       background-color: rgba(52, 152, 219, 0.1);
       border-radius: 50%;
       color: var(--accent-color);
       font-size: 1.5rem;
       transition: all 0.3s ease;
   }

   .mobile-nav-icon:hover {
       background-color: var(--accent-color);
       color: white;
   }

   .overlay {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.5);
       z-index: 1050;
       opacity: 0;
       visibility: hidden;
       transition: opacity 0.3s ease, visibility 0.3s ease;
   }

   .overlay.active {
       opacity: 1;
       visibility: visible;
   }

   /* ==========================================================================
       4. PRIVACY POLICY SPECIFIC STYLES
       ========================================================================== */
   .privacy-hero {
       background-color: var(--background2);
       color: white;
       text-align: center;
       padding: 180px 20px 100px;
       margin-top: 90px;
       position: relative;
       overflow: hidden;
       border-bottom-right-radius: 150px;
       border-bottom-left-radius: 150px;
   }

   .privacy-hero::before {
       content: "";
       position: absolute;
       inset: 0;
       background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
       z-index: 1;
       pointer-events: none;
   }

   .privacy-hero-content {
       position: relative;
       z-index: 2;
   }

   .privacy-hero h1 {
       font-size: 6vw;
       font-family: 'Cinzel';
       color: white;
       margin-bottom: 20px;
   }

   .privacy-hero p {
       font-size: 1.2rem;
       opacity: 0.9;
       max-width: 600px;
       margin: 0 auto;
   }

   .back-button-container {
       position: absolute;
       top: 140px;
       left: 5%;
       z-index: 10;
   }

   .back-btn {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       padding: 12px 24px;
       background: var(--background2);
       color: white;
       text-decoration: none;
       border-radius: 50px;
       font-weight: 500;
       border: 2px solid white;
       transition: all 0.3s ease;
   }

   .back-btn:hover {
       background: var(--background);
       color: var(--background2);
       transform: translateX(-5px);
   }

   .back-btn i {
       font-size: 1.2em;
   }

   .policy-container {
       max-width: 1200px;
       margin: 50px auto;
       padding: 0 20px;
   }

   .policy-content {
       background: white;
       border-radius: 100px 20px 100px 20px;
       padding: 60px;
       box-shadow: 0 20px 40px rgba(70, 72, 59, 0.1);
       border: 2px solid var(--background2);
       position: relative;
       overflow: hidden;
   }

   .policy-content::before {
       content: "ATHNA";
       position: absolute;
       bottom: -50px;
       right: -50px;
       font-size: 12vw;
       color: var(--background2);
       opacity: 0.03;
       font-family: 'Cinzel';
       font-weight: 900;
       pointer-events: none;
       transform: rotate(-10deg);
       z-index: 0;
   }

   .policy-section {
       margin-bottom: 50px;
       position: relative;
       z-index: 2;
   }

   .policy-section h2 {
       font-family: 'Cinzel';
       font-size: 2rem;
       color: var(--background2);
       margin-bottom: 20px;
       padding-bottom: 10px;
       border-bottom: 3px solid var(--text-on-primary);
       display: flex;
       align-items: center;
       gap: 10px;
   }

   .policy-section h2 i {
       color: var(--text-on-primary);
       font-size: 1.8rem;
   }

   .policy-section p {
       color: #555;
       line-height: 1.8;
       margin-bottom: 15px;
       font-size: 1.1rem;
   }

   .policy-section ul {
       list-style: none;
       margin: 20px 0;
   }

   .policy-section ul li {
       margin-bottom: 12px;
       padding-left: 30px;
       position: relative;
       color: #555;
   }

   .policy-section ul li::before {
       content: "✓";
       color: var(--text-on-primary);
       position: absolute;
       left: 0;
       font-weight: bold;
       font-size: 1.2rem;
   }

   .policy-section ul li strong {
       color: var(--background2);
   }

   .info-box {
       background: var(--discount-bg);
       border-left: 4px solid var(--text-on-primary);
       padding: 25px;
       border-radius: 50px 0 50px 0;
       margin: 30px 0;
       border: 2px solid var(--background2);
   }

   .info-box p {
       margin-bottom: 0;
       color: var(--background2);
   }

   .info-box strong {
       color: var(--text-on-primary);
   }

   .policy-buttons {
       display: flex;
       gap: 20px;
       justify-content: center;
       margin-top: 40px;
       flex-wrap: wrap;
       justify-content: space-between;
   }

   .policy-btn {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       padding: 15px 40px;
       background: white;
       color: black;
       text-decoration: none;
       border-radius: 50px;
       font-weight: 600;
       border: 2px solid black;
       transition: all 0.3s ease;
       cursor: pointer;
       font-size: 1.1rem;
   }

   .policy-btn:hover {
       background: #c7c7c7;
       color: black;
       transform: translateY(-3px);
   }

   .policy-btn.active {
       background: var(--background2);
       color: var(--text-on-primary);
       border-color: var(--background2);
   }

   .last-updated {
       text-align: center;
       margin-bottom: 30px;
       
       color: #666;
       font-size: 0.95rem;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 10px;
   }

   .last-updated i {
       color: var(--text-on-primary);
   }

   /* Policy Content Sections */
   .policy-content-section {
       display: none;
       animation: fadeIn 0.5s ease;
   }

   .policy-content-section.active {
       display: block;
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
           transform: translateY(20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Floating Back Button for Mobile */
   .floating-back {
       display: flex;
       position: fixed;
       bottom: 20px;
       right: 20px;
       background: var(--background2);
       color: var(--text-on-primary);
       width: 50px;
       height: 50px;
       border-radius: 50%;
       text-decoration: none;
       align-items: center;
       justify-content: center;
       box-shadow: 0 4px 15px rgba(70, 72, 59, 0.4);
       z-index: 100;
       transition: all 0.3s ease;
       border: 2px solid var(--text-on-primary);
   }

   .floating-back:hover {
       transform: scale(1.1);
       background: var(--text-on-primary);
       color: var(--background2);
   }

   /* Footer */
   footer {
       background-color: var(--background2);
       color: var(--text-on-primary);
       padding: 40px 0;
       text-align: center;
       position: relative;
       overflow: hidden;
       margin-top: 50px;
   }

   footer .container {
       width: 100%;
       margin: 0 auto;
       padding: 0 20px;
   }

   .footer-menu {
       display: flex;
       justify-content: center;
       gap: 40px;
       margin-bottom: 30px;
       flex-wrap: wrap;
   }

   .menu-item {
       color: var(--text-on-primary);
       text-decoration: none;
       font-size: 1rem;
       transition: color 0.3s ease;
       text-transform: uppercase;
       letter-spacing: 1px;
       padding: 5px 0;
       position: relative;
       cursor: pointer;
       background: none;
       border: none;
       font-family: inherit;
   }

   .menu-item:hover {
       opacity: 0.8;
   }

   .menu-item::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 0;
       height: 1px;
       background-color: var(--text-on-primary);
       transition: width 0.3s ease;
   }

   .menu-item:hover::after {
       width: 100%;
   }

   .copyright {
       padding-top: 20px;
       color: var(--text-on-primary);
       font-size: 0.9rem;
       position: relative;
       z-index: 2;
   }

   .copyright a {
       color: var(--text-on-primary);
       text-decoration: none;
       margin: 0 10px;
   }

   .copyright a:hover {
       text-decoration: underline;
   }

   .bg-text3 {
       position: absolute;
       bottom: -9vw;
       left: 50%;
       transform: translateX(-50%);
       font-size: 22.1vw;
       color: #ffffff;
       opacity: 0.03;
       z-index: 1;
       font-weight: 900;
       pointer-events: none;
       text-transform: uppercase;
       white-space: nowrap;
       text-align: center;
   }


   .priv-link {
       font-size: 13px;
   }

   /* ==========================================================================
       5. MEDIA QUERIES
       ========================================================================== */
   @media (max-width: 1024px) {
       .privacy-hero {
           padding: 160px 20px 80px;
       }

       .policy-content {
           padding: 40px;
       }

       .policy-section h2 {
           font-size: 1.8rem;
       }
   }

   @media (max-width: 992px) {
       .nav-link {
           font-size: 22px;
       }


   }

   @media (max-width: 768px) {
       .mobhidden {
           visibility: hidden;
       }

       .desktop-header:not(footer .desktop-header) {
           display: none;
       }

       .mobile-header {
           display: flex;
       }

       .privacy-hero {
           margin-top: 85px;
           padding: 140px 20px 60px;
           border-bottom-right-radius: 80px;
           border-bottom-left-radius: 80px;
       }

       .privacy-hero h1 {
           font-size: 8vw;
       }

       .back-button-container {
           top: 120px;
           left: 20px;
       }

       .back-btn span {
           display: none;
       }

       .back-btn {
           padding: 10px;
           border-radius: 50%;
       }

       .back-btn i {
           margin: 0;
       }

       .floating-back {
           display: flex;
       }

       .policy-content {
           padding: 30px;
           border-radius: 60px 10px 60px 10px;
       }

       .policy-section h2 {
           font-size: 1.5rem;
       }

       .policy-section h2 i {
           font-size: 1.5rem;
       }

       .policy-section p {
           font-size: 1rem;
       }

       .policy-buttons {
           flex-direction: column;
           align-items: stretch;
       }

       .policy-btn {
           justify-content: center;
       }

       .info-box {
           padding: 20px;
           border-radius: 40px 0 40px 0;
       }

       .footer-menu {
           gap: 20px;
           flex-wrap: wrap;
       }

       .copyright {
           display: flex;
           flex-direction: column;
           gap: 10px;
       }
   }

   @media (max-width: 576px) {
       .privacy-hero {
           padding: 120px 20px 50px;
       }


       .privacy-hero p {
           font-size: 1rem;
       }

       .policy-content {
           padding: 25px;
       }

       .policy-section {
           margin-bottom: 30px;
       }

       .policy-section h2 {
           font-size: 1.3rem;
       }

       .policy-section ul li {
           font-size: 0.95rem;
       }

       .info-box {
           padding: 15px;
           font-size: 0.95rem;
       }
   }

   @media (max-width: 480px) {
       .policy-content {
           padding: 20px;
       }

       .policy-section h2 {
           font-size: 1.2rem;
       }

       .policy-section ul li {
           padding-left: 25px;
       }
   }

   /* Print styles */
   @media print {

       header,
       footer,
       .back-button-container,
       .floating-back,
       .policy-buttons {
           display: none;
       }

       .privacy-hero {
           margin-top: 0;
           padding: 50px 20px;
           background: none;
           color: black;
       }

       .privacy-hero::before {
           display: none;
       }

       .privacy-hero h1 {
           color: black;
       }

       .policy-content {
           box-shadow: none;
           border: 1px solid #ddd;
       }

       .policy-content::before {
           display: none;
       }
   }