* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F8;
        }
        
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 42px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }
        
        .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        
        .btn-get-started:hover {
    background: #86BC25;
}

        
        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .theme-toggle svg {
            width: 24px;
            height: 24px;
            stroke: #333;
            stroke-width: 2;
            fill: none;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover svg {
            stroke: #86BC25;
        }
        
        body.dark-mode .navbar {
            background-color: #2a2a2a;
            box-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        body.dark-mode .navbar-nav .nav-link {
            color: #e0e0e0 !important;
        }
        
        body.dark-mode .navbar-nav .nav-link:hover {
            color: #0066FF !important;
        }
        
        body.dark-mode .theme-toggle svg {
            stroke: #e0e0e0;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('/static/images/privacy.png');
            background-size: cover;
            background-position: center center;
            background-attachment: scroll;
            background-repeat: no-repeat;
            background-color: transparent;
            position: relative;
            width: 100%;
            margin: 0;
            padding: 2rem;
        }
        
        .hero::before {
            content: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            width: 100%;
            max-width: 1200px;
            padding: 0 1rem;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .policy-container {
            max-width: 100%;
            margin: 4rem 0;
            padding: 4rem 2rem;
            background-color: #ffffff;
        }
        
        .policy-section {
            margin-bottom: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .policy-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1.5rem;
            margin-top: 2rem;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .policy-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1f2937;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        .policy-section p, .policy-section li {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .policy-section ul, .policy-section ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .policy-section li {
            margin-bottom: 0.5rem;
        }
        
        body.dark-mode .policy-container {
            background-color: #1a1a1a;
        }
        
        body.dark-mode .policy-section h2 {
            color: #ffffff;
        }
        
        body.dark-mode .policy-section h3 {
            color: #e0e0e0;
        }
        
        body.dark-mode .policy-section p,
        body.dark-mode .policy-section li {
            color: #b0b0b0;
        }
        
        body.dark-mode {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }
        
        footer {
            background-color: #111313;
            color: #aaa;
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }
        
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: #86BC25 !important;
        }
        
        footer h6 {
            color: white;
        }
        
        body.dark-mode footer {
            background-color: #111313;
            border-top: 1px solid #333;
        }
        
        body.dark-mode footer h6 {
            color: #ffffff !important;
        }
        
        body.dark-mode footer a {
            color: #b0b0b0 !important;
        }
        
        body.dark-mode footer a:hover {
            color: #d3d3d8 !important;
        }
        
        body.dark-mode footer .text-muted {
            color: #888 !important;
        }
        
        body.dark-mode .theme-toggle:hover svg {
            stroke: #86BC25;
        }
        
        body.dark-mode .dropdown-menu {
            background-color: #2a2a2a;
            border-color: #444;
        }
        
        body.dark-mode .dropdown-item {
            color: #e0e0e0;
        }
        
        body.dark-mode .dropdown-item:hover,
        body.dark-mode .dropdown-item:focus {
            background-color: #3a3a3a;
            color: #86BC25;
        }
        
        body.dark-mode .hero {
            background-color: #1a1a1a;
        }
        
        body.dark-mode .policy-section a {
            color: #86BC25;
        }
        
        body.dark-mode .policy-section a:hover {
            color: #86BC25;
        }
        
        body.dark-mode .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}


        
        body.dark-mode .btn-get-started:hover {
    background: #86BC25;
}

        
        body.dark-mode hr {
            border-color: #333 !important;
        }
        
        @media (max-width: 1024px) {
            .navbar {
                padding: 0.8rem 0;
            }
            
            .navbar-brand img {
                height: 45px;
            }
            
            .navbar-nav .nav-link {
                font-size: 0.95rem;
                margin-left: 0.75rem;
            }
            
            .dropdown-menu {
                font-size: 0.9rem;
            }
            
            .hero {
                height: 70vh;
                padding: 2rem 1.5rem;
                background-position: center center;
                background-size: contain;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                padding: 0 1rem;
            }
            
            footer .row {
                gap: 1.5rem !important;
            }
            
            footer .row > div {
                flex: 1 1 45% !important;
            }
            
            footer .row.align-items-center > div {
                padding: 0.5rem 0;
            }
            
            footer .col-md-4.text-end,
            footer .col-md-4.text-center {
                text-align: center !important;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 0.5rem 0;
            }
            
            .navbar-brand img {
                height: 40px;
            }
            
            /* .navbar-nav {
                margin-top: 1rem;
            } */
            
            .navbar-nav .nav-link {
                font-size: 0.9rem;
                margin-left: 0;
                padding: 0.5rem 0;
            }
            
            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

            
            .theme-toggle {
                margin-right: 0;
                margin-left: 0;
            }
            
            .hero {
                height: 60vh;
                min-height: 400px;
                padding: 2rem 1rem;
                background-attachment: scroll;
                background-position: center center;
                background-size: contain;
            }
            
            .hero-content {
                padding: 0 0.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
                margin-bottom: 0.75rem;
                word-break: break-word;
            }
            
            .policy-container {
                padding: 2rem 1rem;
                margin: 2rem 0;
            }
            
            .policy-section {
                margin-bottom: 2rem;
            }
            
            .policy-section h2 {
                font-size: 1.5rem;
                margin-top: 1.5rem;
            }
            
            .policy-section h3 {
                font-size: 1.2rem;
                margin-top: 1rem;
            }
            
            .policy-section ul, .policy-section ol {
                margin-left: 1.5rem;
            }
            
            .policy-section p, .policy-section li {
                font-size: 0.95rem;
            }
            
            footer {
                padding: 2rem 1rem 1rem;
            }
            
            footer .row {
                flex-direction: column !important;
                gap: 2rem !important;
            }
            
            footer .row > div {
                flex: none !important;
                min-width: 100% !important;
            }
            
            footer h6 {
                font-size: 1rem;
                margin-bottom: 1rem !important;
            }
            
            footer .text-muted {
                font-size: 0.875rem;
            }
            
            footer ul li a {
                font-size: 0.85rem !important;
            }
            
            footer .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            footer .row.align-items-center {
                flex-direction: column !important;
                text-align: center !important;
                gap: 1rem;
            }
            
            footer .row.align-items-center > div {
                text-align: center !important;
                width: 100%;
            }
            
            footer .col-md-4.text-end {
                text-align: center !important;
            }
            
            footer .col-md-4 p {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .navbar-brand img {
                height: 35px;
            }
            
            .hero {
                height: 50vh;
                min-height: 350px;
                padding: 1.5rem 0.75rem;
                background-position: center center;
                background-size: contain;
                background-attachment: scroll;
            }
            
            .hero-content {
                padding: 0 0.25rem;
            }
            
            .hero h1 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
                line-height: 1.3;
            }
            
            .hero::before {
                background: rgba(0, 0, 0, 0.5);
            }
            
            .policy-container {
                padding: 1.5rem 0.75rem;
            }
            
            .policy-section h2 {
                font-size: 1.3rem;
            }
            
            .policy-section h3 {
                font-size: 1.1rem;
            }
            
            .policy-section p, .policy-section li {
                font-size: 0.9rem;
            }
            
            .policy-section ul, .policy-section ol {
                margin-left: 1rem;
            }
            
            footer {
                padding: 1.5rem 0.75rem 1rem;
            }
            
            footer .row {
                gap: 1.5rem !important;
            }
            
            footer h6 {
                font-size: 0.95rem;
                margin-bottom: 0.75rem !important;
            }
            
            footer .text-muted {
                font-size: 0.8rem;
            }
            
            footer ul li a {
                font-size: 0.8rem !important;
            }
            
            footer ul li {
                margin-bottom: 0.5rem !important;
            }
            
            footer img {
                max-width: 120px !important;
            }
            
            footer .row.align-items-center p {
                font-size: 0.75rem;
            }
            
            footer .row.align-items-center svg {
                width: 16px !important;
                height: 16px !important;
            }
            
            footer .row.align-items-center a {
                margin: 0 0.25rem !important;
            }
        }
        
        @media (max-width: 375px) {
            .hero {
                height: 45vh;
                min-height: 300px;
                padding: 1rem 0.5rem;
                background-position: center center;
                background-size: contain;
            }
            
            .hero h1 {
                font-size: 1.25rem;
            }
            
            .hero-content {
                padding: 0;
            }
            
            .navbar-brand img {
                height: 30px;
            }
            
            .policy-container {
                padding: 1rem 0.5rem;
            }
        }
        @keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Floating WhatsApp circle */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px #0003;
    z-index: 999;
    animation: pulse 1.5s infinite;
}

/* Icon inside */
.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
