/* RESET & GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f2fbfb; /* Soft light tint of your base teal color */
    color: #1f2937; /* Dark charcoal for excellent readability */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    background: linear-gradient(135deg, #49baba, #2b8c8c);
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

/* PRIVACY CONTENT CONTAINER */
.privacy-container {
    flex: 1;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-card {
    background-color: #ffffff;
    max-width: 800px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.privacy-card h1 {
    font-size: 32px;
    color: #2b8c8c;
    margin-bottom: 10px;
}

.effective-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
    font-style: italic;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 30px 0;
}

.policy-section {
    margin-bottom: 25px;
}

.policy-section h2 {
    font-size: 20px;
    color: #2b8c8c;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}


/* FOOTER */
.footer {
    background-color: #2b8c8c;
    color: #ffffff;
    padding: 30px 0;
    font-size: 14px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    margin-left: 15px;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}


/* RESPONSIVE DESIGN (For mobile screens) */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-links a {
        margin-left: 0;
    }

    .privacy-container {
        padding: 30px 10px;
    }

    .privacy-card {
        padding: 25px 20px;
    }

    .privacy-card h1 {
        font-size: 26px;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}