body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #f3ffe1 0%, #e6f7d4 100%);
    margin: 0;
    color: #222;
}

header {
    background: #141414 !important;
    /* Use the same as --color-darker-bg from contact.css */
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 0.5rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff !important;
    /* Ensure nav links are white for contrast on dark bg */
    font-weight: 500;
    font-size: 1.08rem;
    transition: color 0.2s;
    opacity: 0.85;
}

.nav-links a.active,
.nav-links a:hover {
    color: #b6ff4a !important;
    opacity: 1;
}

.privacy-container {
    max-width: 800px;
    margin: 2.5rem auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
}

.privacy-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.privacy-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
}

.privacy-summary {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 0;
}

.privacy-section {
    margin-bottom: 2.2rem;
}

.privacy-section h2 {
    font-size: 1.25rem;
    color: #68bf4a;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.privacy-section ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0 0;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
    line-height: 1.6;
}

.privacy-section p {
    font-size: 1.08rem;
    color: #333;
    line-height: 1.7;
    margin: 0.5rem 0 0 0;
}

.privacy-section a {
    color: #2eb086;
    text-decoration: underline;
    transition: color 0.2s;
}
.privacy-section a:hover {
    color: #68bf4a;
}

.privacy-footer {
    background: #fff;
    border-top: 1px solid #e6f7d4;
    margin-top: 3rem;
    padding: 1.2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #222;
}

.logo, .logo-text {
    font-size: 1.6rem !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff !important;
    display: flex;
    align-items: center;
}
.white { color: #fff !important; }
.green { color: #b6ff4a !important; }

.login-btn {
    background: #b6ff4a !important;
    color: #111 !important;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.15rem;
    min-width: 110px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.login-btn:hover {
    background: #68bf4a !important;
    color: #fff !important;
}

.privacy-main {
    background: none;
    margin: 0;
    padding: 0;
}

.privacy-hero-bpi {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 2.5rem auto 0 auto;
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 0 0 0 0;
    min-height: 320px;
    overflow: hidden;
}

.privacy-hero-img-col {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e6f7d4 0%, #f3ffe1 100%);
    height: 100%;
    min-height: 260px;
    padding: 2.5rem 1.5rem 2.5rem 2.5rem;
}

.privacy-hero-img {
    width: 260px;
    max-width: 100%;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    background: #fff;
}

/* Progressive Image Loading with Blur Effect */
.privacy-hero-img {
    filter: blur(10px);
    transition: filter 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0.8;
}

.privacy-hero-img.loaded {
    filter: blur(0);
    opacity: 1;
}

/* Responsive blur effects for different screen sizes */
@media (max-width: 768px) {
    .privacy-hero-img {
        filter: blur(8px);
        transition: filter 0.4s ease-out, opacity 0.4s ease-out;
    }
}

@media (max-width: 480px) {
    .privacy-hero-img {
        filter: blur(6px);
        transition: filter 0.3s ease-out, opacity 0.3s ease-out;
    }
}

.privacy-hero-content-col {
    flex: 1 1 60%;
    padding: 2.5rem 2.5rem 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.privacy-hero-content-col h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.1rem;
    margin-top: 0;
}

.privacy-hero-content-col .privacy-summary {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 0;
}

.privacy-bpi-layout {
    border-radius: 0 0 18px 18px;
    margin-top: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 2.2rem 2.2rem 2.2rem 2.2rem;
    margin-bottom: 2.5rem; /* Add space before footer */
}

@media (max-width: 900px) {
    .privacy-hero-bpi {
        flex-direction: column;
        padding: 0;
    }
    .privacy-hero-img-col {
        padding: 2rem 1rem 1.2rem 1rem;
        min-height: 180px;
    }
    .privacy-hero-img {
        width: 180px;
    }
    .privacy-hero-content-col {
        padding: 1.2rem 1.2rem 1.2rem 1.2rem;
        align-items: center;
        text-align: center;
    }
    .privacy-hero-content-col h1 {
        font-size: 1.4rem;
    }
    .privacy-bpi-layout {
        padding: 1.2rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .privacy-container {
        padding: 1.2rem 0.5rem;
        margin: 1.2rem 0 0 0;
    }
    .privacy-hero h1 {
        font-size: 1.5rem;
    }
    .privacy-section h2 {
        font-size: 1.08rem;
    }
    .nav {
        padding: 0.5rem 0.5rem;
    }
    .nav-links {
        gap: 1.1rem;
    }
    .privacy-bpi-layout {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
} 