    :root {
        --teal: #7DDDD3;
        --navy: #1E3A8A;
        --white: #FFFFFF;
        --light-gray: #F8FAFC;
        --dark-gray: #64748B;
        --success: #10B981;
        --warning: #F59E0B;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--navy);
        background: var(--white);
        display: flex;
        flex-direction: column;
    }

    body {
        overflow-x: hidden;
    }

    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--navy));
        z-index: 9999;
        transition: width 0.1s ease;
    }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(125, 221, 211, 0.1);
}

/* Navigation Bar */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--navy);
    display: flex;
    align-items: center;
    flex: 1;
}

.logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}


.logo img:not([src]),
.logo img[src=""] {
    display: none;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--navy);
}

/* Trustpilot */
.trustpilot-badge {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trustpilot-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--navy);
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(125, 221, 211, 0.1);
    border: 1px solid rgba(125, 221, 211, 0.3);
    transition: all 0.3s ease;
}

.trustpilot-link:hover {
    background: rgba(125, 221, 211, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 221, 211, 0.3);
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.trustpilot-stars .star {
    color: #00B67A;
    font-size: 14px;
}

.trustpilot-info {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.trustpilot-text {
    font-size: 0.7rem;
    color: #00B67A;
    font-weight: 600;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--teal);
}

/* CTA Button */
.nav-cta {
    background: var(--teal);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 221, 211, 0.3);
}

/* Mobile Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
}

    main {
        flex: 1;
        margin-top: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
    }

    .privacy-policy {
        max-width: 900px;
        background: var(--light-gray);
        padding: 2.5rem 2rem;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .privacy-policy h1 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .privacy-policy p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .privacy-policy a {
        color: var(--dark-gray);
        text-decoration: underline;
    }

    .footer {
        background: var(--navy);
        color: #fff;
        text-align: center;
        padding: 2rem 1rem 1.5rem;
    }

    .footer-logo img {
        height: 60px;
        margin-bottom: 1rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--teal);
    }
