:root {
    --pk-dark-green: #01411C;
    --pk-green: #006233;
    --pk-mid-green: #00843D;
    --pk-light-green: #00A651;
    --pk-pale-green: #00C965;
    --pk-white: #FFFFFF;
    --pk-cream: #F0FFF4;
    --pk-gold: #D4AF37;
    --gradient-primary: linear-gradient(135deg, #01411C 0%, #006233 40%, #00843D 70%, #00A651 100%);
    --gradient-hero: linear-gradient(160deg, #01411C 0%, #006233 30%, #00843D 60%, #004D2A 100%);
    --gradient-card: linear-gradient(145deg, rgba(0,98,51,0.05) 0%, rgba(0,166,81,0.1) 100%);
    --gradient-accent: linear-gradient(90deg, #006233, #00A651, #D4AF37);
    --text-dark: #0a1f0a;
    --text-body: #2d3a2d;
    --text-muted: #5a6b5a;
    --shadow-sm: 0 2px 8px rgba(0,65,28,0.08);
    --shadow-md: 0 8px 30px rgba(0,65,28,0.12);
    --shadow-lg: 0 20px 60px rgba(0,65,28,0.15);
    --shadow-xl: 0 30px 80px rgba(0,65,28,0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--pk-white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.2;
}

/* ========== TOPBAR ========== */
.topbar {
    background: var(--pk-dark-green);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}
.topbar a:hover {
    color: var(--pk-gold);
}
.topbar .bi {
    color: var(--pk-pale-green);
    margin-right: 5px;
}
.topbar .separator {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
    margin: 0 12px;
}
.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-left: 6px;
    font-size: 12px;
    transition: all 0.3s;
}
.topbar-social a:hover {
    background: var(--pk-gold);
    color: var(--pk-dark-green) !important;
    transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.main-navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(0,65,28,0.06);
}
.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,65,28,0.1);
}
.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 0;
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,98,51,0.3);
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--pk-dark-green);
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.brand-tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    display: block;
    padding: 22px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links li a:hover,
.nav-links li a.active {
    color: var(--pk-green);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
}
.nav-cta {
    margin-left: 16px;
}
.btn-nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,98,51,0.3);
}
.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,98,51,0.4);
}

.navbar-toggler-custom {
    display: none;
    background: none;
    border: 2px solid var(--pk-green);
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: fixed;
    top: 56px;
    right: 20px;
    z-index: 10001;
}
.navbar-toggler-custom:hover {
    background: var(--pk-green);
}
.navbar-toggler-custom span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pk-green);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.navbar-toggler-custom:hover span {
    background: white;
}

.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-body);
    cursor: pointer;
    z-index: 10;
}

/* ========== PAGE HERO ========== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}
#page-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25;
}
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1,65,28,0.4) 0%, rgba(0,98,51,0.6) 50%, rgba(1,65,28,0.9) 100%);
    z-index: 2;
}
.page-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 80px 0 60px;
    text-align: center;
}
.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}
.page-hero-badge .bi {
    color: var(--pk-gold);
}
.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
}
.page-hero-title .highlight {
    background: linear-gradient(90deg, #00C965, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}
.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 14px;
}
.breadcrumb-custom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-custom a:hover {
    color: var(--pk-gold);
}
.breadcrumb-custom .separator {
    color: rgba(255,255,255,0.4);
}
.breadcrumb-custom .current {
    color: white;
    font-weight: 600;
}

/* ========== SECTION COMMON ========== */
.section-padding {
    padding: 100px 0;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,98,51,0.08), rgba(0,166,81,0.08));
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pk-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,98,51,0.1);
}
.section-badge .bi {
    font-size: 14px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}
.section-title-center {
    text-align: center;
}
.section-subtitle-center {
    text-align: center;
    margin: 0 auto;
}
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== PRIVACY CONTENT ========== */
.privacy-section {
    position: relative;
}
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}
.privacy-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,98,51,0.06);
    margin-bottom: 24px;
    transition: all 0.3s;
}
.privacy-card:hover {
    box-shadow: var(--shadow-md);
}
.privacy-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0,98,51,0.06);
}
.privacy-card-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
}
.privacy-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}
.privacy-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}
.privacy-card p:last-child {
    margin-bottom: 0;
}
.privacy-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.privacy-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}
.privacy-card ul li .bi {
    color: var(--pk-green);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}
.privacy-card strong {
    color: var(--text-dark);
    font-weight: 700;
}
.privacy-highlight {
    background: linear-gradient(135deg, rgba(0,98,51,0.05), rgba(0,166,81,0.08));
    border-left: 4px solid var(--pk-green);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}
.privacy-highlight p {
    margin-bottom: 0;
}
.privacy-update {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.15));
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pk-dark-green);
    margin-bottom: 32px;
    border: 1px solid rgba(212,175,55,0.2);
}
.privacy-update .bi {
    color: var(--pk-gold);
}

/* ========== QUICK LINKS SIDEBAR ========== */
.privacy-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-nav {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,98,51,0.06);
}
.sidebar-nav-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-nav ul li {
    margin-bottom: 4px;
}
.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.sidebar-nav ul li a:hover {
    background: linear-gradient(135deg, rgba(0,98,51,0.05), rgba(0,166,81,0.08));
    color: var(--pk-green);
    padding-left: 16px;
}
.sidebar-nav ul li a .bi {
    font-size: 14px;
}
.sidebar-contact {
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 20px;
    color: white;
}
.sidebar-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}
.sidebar-contact p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.7;
}
.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s;
}
.sidebar-contact a:hover {
    color: var(--pk-gold);
    padding-left: 4px;
}
.sidebar-contact a .bi {
    font-size: 16px;
    color: var(--pk-gold);
}

/* ========== CTA SECTION ========== */
.cta-section {
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.btn-cta {
    background: var(--pk-gold);
    color: var(--pk-dark-green);
    border: none;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-cta:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212,175,55,0.3);
    color: var(--pk-dark-green);
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--pk-dark-green);
    color: rgba(255,255,255,0.75);
    position: relative;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}
.footer-top {
    padding: 70px 0 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-brand-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pk-pale-green);
    font-size: 20px;
}
.footer-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: white;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--pk-gold);
    color: var(--pk-dark-green);
    transform: translateY(-3px);
}
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--pk-gold);
    border-radius: 3px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--pk-gold);
    transition: width 0.3s;
}
.footer-links li a:hover {
    color: white;
    padding-left: 8px;
}
.footer-links li a:hover::before {
    width: 12px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}
.footer-contact-item .bi {
    color: var(--pk-pale-green);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-item a:hover {
    color: white;
}
.footer-certificates {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.footer-cert-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-cert-badge .bi {
    color: var(--pk-pale-green);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}
.footer-bottom a {
    color: var(--pk-pale-green);
    text-decoration: none;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-bottom-links li a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom-links li a:hover {
    color: white;
}
.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}
.payment-icons span {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    box-shadow: 0 6px 25px rgba(0,98,51,0.4);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0,98,51,0.5);
}

/* ========== TOAST ========== */
.custom-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    border-left: 4px solid var(--pk-green);
    max-width: 380px;
}
.custom-toast.show {
    transform: translateX(0);
}
.custom-toast .bi {
    font-size: 24px;
    color: var(--pk-green);
}
.custom-toast .toast-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.custom-toast .toast-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--pk-dark-green);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--pk-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========== MOBILE NAV OVERLAY ========== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .nav-close {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        z-index: 10000;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links li a {
        padding: 14px 0;
        border-bottom: 1px solid #f0f7f2;
    }
    .nav-links li a::after {
        display: none;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
    }

    .navbar-toggler-custom {
        display: block;
    }

    .privacy-sidebar {
        position: static;
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .topbar .d-none-mobile {
        display: none !important;
    }
    .page-hero {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .privacy-card {
        padding: 24px;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    .payment-icons {
        justify-content: center;
        margin-top: 10px;
    }
}