/* Privacy Policy Page Specific Styles */
.privacy-policy-body {
    background-color: #0d1117;
    color: #e6edf3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.privacy-policy-header {
    padding: 1.5rem 0;
    background-color: #0d1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-policy-main {
    padding: 4rem 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.policy-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
    color: #ffffff;
}

.last-updated {
    color: #8b949e;
    font-size: 1rem;
    margin-bottom: 4rem;
    display: block;
    text-align: left;
}

.policy-section {
    margin-bottom: 3.5rem;
    padding-bottom: 0;
    border: none;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 4rem;
    color: #ffffff;
    padding-bottom: 0;
    border: none;
    text-align: left;
}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem;
    color: #ffffff;
    text-align: left;
}

.policy-section p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e6edf3;
    font-size: 1.125rem;
}

.policy-list {
    margin: 1.75rem 0 2.5rem 2rem;
}

.policy-list li {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #e6edf3;
    font-size: 1.125rem;
    padding-left: 0.5rem;
}

.policy-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Remove any excess whitespace */
.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Additional spacing fix for lists */
.policy-list li:last-child {
    margin-bottom: 0;
}

/* Override any blue elements that might be inherited */
.privacy-policy-body a,
.privacy-policy-body svg,
.privacy-policy-body .icon,
.privacy-policy-body *::before,
.privacy-policy-body *::after {
    color: inherit !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
    stroke: currentColor !important;
    box-shadow: none !important;
}

/* Specifically target the footer to remove any blue styling */
.privacy-policy-body footer a {
    color: #e6edf3 !important;
}

.privacy-policy-body .footer-column a.active {
    color: #e6edf3 !important;
    border: none !important;
    background: transparent !important;
}

/* Footer section */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-column a {
    font-size: 1.1rem;
    color: #e6edf3;
    margin-bottom: 1rem;
    display: block;
}

/* Footer active link styling - override blue color */
.footer-column a.active {
    color: #e6edf3;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 900px) {
    .policy-container h1 {
        font-size: 2.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.75rem;
    }
    
    .policy-section h3 {
        font-size: 1.35rem;
    }
    
    .policy-section p,
    .policy-list li {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .policy-container h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-list {
        margin-left: 1.5rem;
    }
} 