/* Policy Pages Styles - NVIDIA-inspired Tech Layout */

.policy-hero {
    background-color: #000000; /* Stark black like NVIDIA */
    color: #ffffff;
    padding: 4rem 0 3rem; /* Much tighter padding */
    text-align: left; /* Left aligned for tech look */
    position: relative;
    border-bottom: 1px solid #333;
}

.policy-hero .container {
    max-width: 1200px; /* Wider container alignment */
    padding: 0 2rem;
}

.policy-hero h1 {
    font-family: var(--font-primary); /* Inter instead of Serif */
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-transform: none;
}

.policy-meta {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: #999999; /* Tech gray */
    margin-top: 0.5rem;
    font-weight: 400;
}

.policy-meta span {
    margin-right: 1.5rem;
    margin-left: 0;
}

.policy-content {
    max-width: 1200px; /* Wider reading area */
    margin: 0 auto;
    padding: 3rem 2rem;
    font-family: var(--font-primary); /* Force Sans-Serif */
    color: #333333;
}

/* Typography Overrides for Tech Look */
.policy-content h2,
.policy-content h3,
.policy-content h4 {
    font-family: var(--font-primary);
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0; /* Thinner, lighter border */
    line-height: 1.2;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.policy-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 1rem; /* Tighter paragraph spacing */
    line-height: 1.6; /* Tighter line height */
    font-size: 1rem;
    color: #444444;
    max-width: 90ch; /* Allow wider text for tech feel */
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem; /* Tighter list items */
    line-height: 1.6;
    color: #444444;
    font-size: 1rem;
}

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

.policy-content a {
    color: #0066cc; /* Standard tech blue link */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Tech-style Highlights */
.policy-highlight {
    background-color: #f5f5f5; /* Light gray background */
    padding: 1.5rem;
    border-left: 4px solid #76b900; /* NVIDIA-ish Green accent or keep brand blue? Let's use brand accent but solid */
    border-left-color: var(--accent-color);
    border-radius: 0; /* Square corners for tech look */
    margin: 1.5rem 0;
    box-shadow: none;
}

.policy-note {
    background-color: #fff9c4;
    border-left: 4px solid #fbc02d;
    padding: 1.5rem;
    border-radius: 0;
    margin: 1.5rem 0;
    box-shadow: none;
}

.policy-warning {
    background-color: #ffebee;
    border-left: 4px solid #d32f2f;
    padding: 1.5rem;
    border-radius: 0;
    margin: 1.5rem 0;
    box-shadow: none;
}

/* Table of Contents - Sidebar style if possible, or clean block */
.policy-toc {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 3rem;
    border: 1px solid #e9ecef;
}

.policy-toc h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.policy-toc li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.policy-section {
    scroll-margin-top: 100px;
}

/* Contact Box - Simplified */
.contact-box {
    background: #f5f5f5;
    color: #333;
    padding: 2rem;
    border-radius: 0;
    text-align: left;
    margin-top: 4rem;
    box-shadow: none;
    border-top: 2px solid var(--accent-color);
}

.contact-box h3 {
    color: #000;
    margin-bottom: 1rem;
}

.contact-box p {
    color: #444;
}

.contact-box a {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero {
        padding: 3rem 0 2rem;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
}
