:root {
    --policy-max-width: 800px;
    --policy-padding: 40px 20px;
    --primary-color: #0DD9D9;
    --secondary-color: #00A3A3;
    --background-alt: #f8f9fb;
    --text-color: #212529;
    
}


/* Main policy content container */
.policy-content {
    max-width: var(--policy-max-width);
    margin: 0 auto;
    padding: var(--policy-padding);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Policy header */
.policy-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.policy-header h1 {
    font-size: 32px;
    /* color: var(--primary-color); */
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    font-size: 16px;
}

/* Policy content styling */
.policy-content {
    line-height: 1.6;
}

.policy-content h2 {
    font-size: 24px;
    font-weight: 600;
    /* color: var(--secondary-color); */
    margin: 40px 0 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.policy-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Lists in policy */
.policy-content ul, 
.policy-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.policy-content strong {
    font-weight: 600;
}

/* Navigation for policy pages */
.policy-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 20px;
}

.policy-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-nav .site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.policy-nav .site-logo img {
    height: 40px;
    width: auto;
}

.policy-nav .site-logo span {
    /* font-size: 18px;
    font-weight: 600;
    margin-left: 10px; */
     color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-left: 10px;
}

.policy-nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.policy-nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.policy-nav-links a:hover {
    color: var(--primary-color);
}

.download-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px 20px;
    border-radius: 12px;
    /* font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.download-button span {
    color: white;
}
.download-button a:hover {
    color: white;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* color:white; */
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.footer {
    /* background-color: var(--background-alt); */
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: var(--policy-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    text-align: center;
}

.footer .copyright {
    color: var(--text-light);
    font-size: 14px;
}

.footer .contact-email {
    font-size: 14px;
}

.footer .contact-email a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer .contact-email a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 28px;
    }
    
    .policy-content h2 {
        font-size: 22px;
    }
    
    .policy-content p,
    .policy-content li {
        font-size: 15px;
    }
    
    .policy-nav-links {
        gap: 15px;
    }
    
    .policy-nav .site-logo img {
        height: 35px;
    }
    
    .download-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 30px 15px;
    }
    
    .policy-header h1 {
        font-size: 24px;
    }
    
    .policy-content h2 {
        font-size: 20px;
        margin: 30px 0 12px;
    }
    
    .policy-nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .policy-nav-links {
        width: 100%;
        justify-content: center;
    }
    
    .policy-nav .site-logo {
        margin: 0 auto;
    }
}