/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 113, 238, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.logo-icon {
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Main content */
.main-content {
    padding: 0 2rem;
}

.hero {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgb(148 163 184)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Features section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f172a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ef4444);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.feature-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

/* Technical details section */
.technical-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
}

.technical-details h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f172a;
}

.tech-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.tech-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tech-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-item ul {
    list-style: none;
    padding: 0;
}

.tech-item li {
    padding: 0.75rem 0;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.tech-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

.tech-item li:last-child {
    border-bottom: none;
}

.tech-item code {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 500;
}

/* Demo section */
.demo-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.demo-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
}

.demo-video-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 4rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    color: #64748b;
}

.demo-video-placeholder .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Verification status section */
.verification-status {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
}

.verification-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.verification-status h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
}

.verification-status p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.verification-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.verification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.status-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.verification-item span:last-child {
    font-weight: 500;
    color: #374151;
}

/* ===== PRIVACY PAGE SPECIFIC STYLES ===== */

/* Privacy Policy Header - adjusted for privacy page */
.privacy-header .header h1 {
    font-size: 2.5rem;
}

.privacy-header .tagline {
    font-size: 1.2rem;
}

/* Policy Header Section */
.policy-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    border-bottom: 2px solid #e2e8f0;
}

.policy-meta {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.policy-meta p {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
    color: #475569;
    transition: all 0.3s ease;
}

.policy-meta p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.policy-meta strong {
    color: #0f172a;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

/* Policy Content */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-section {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
}

.policy-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.policy-section li {
    color: #475569;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    border-bottom: 1px solid #f1f5f9;
}

.policy-section li:before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-section li:last-child {
    border-bottom: none;
}

/* Subsections */
.subsection {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #3b82f6;
}

.subsection h3 {
    color: #1e293b;
    margin-top: 0;
}

/* Important Notes */
.important-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.important-note::before {
    content: '⚠️';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #f59e0b;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.important-note h4 {
    color: #92400e;
    margin-top: 0;
}

.important-note p,
.important-note li {
    color: #92400e;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.service-item h4 {
    color: #0f172a;
    margin-top: 0;
}

.service-item p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.service-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.security-item {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #10b981;
    position: relative;
}

.security-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #10b981, #059669, #047857);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-item:hover::before {
    opacity: 0.1;
}

.security-item h4 {
    color: #065f46;
    margin-top: 0;
}

.security-item li {
    color: #047857;
}

.security-item li:before {
    content: '🔒';
    font-size: 1rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-item {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #3b82f6;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.right-item h4 {
    color: #1e40af;
    margin-top: 0;
    margin-bottom: 1rem;
}

.right-item p {
    color: #1e40af;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.action-link {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.action-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Compliance Info */
.compliance-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #0284c7;
    margin: 2rem 0;
}

.compliance-info h3 {
    color: #0c4a6e;
    margin-top: 0;
}

.compliance-info p,
.compliance-info li {
    color: #0369a1;
}

.compliance-info a {
    color: #0284c7;
    font-weight: 500;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f59e0b;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.contact-item h4 {
    color: #92400e;
    margin-top: 0;
}

.contact-item p {
    color: #a16207;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #d97706;
    font-weight: 500;
}

.contact-item strong {
    color: #92400e;
}

/* Acknowledgment Box */
.acknowledgment-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.acknowledgment-box::before {
    content: '✅';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.acknowledgment-box p {
    color: #15803d;
    font-weight: 500;
    margin: 0;
}

.acknowledgment-box strong {
    color: #166534;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-section a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    padding-bottom: 1px;
}

.footer-bottom a:hover {
    color: #f8fafc;
    border-bottom-color: rgba(248, 250, 252, 0.8);
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 0;
    }
    
    .header {
        padding: 3rem 1rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .main-content {
        padding: 0 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .tech-details {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .verification-details {
        grid-template-columns: 1fr;
    }
    
    /* Privacy page mobile adjustments */
    .policy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .policy-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-grid,
    .security-measures,
    .rights-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .subsection {
        padding: 1.5rem;
    }
    
    .important-note {
        padding: 1.5rem;
    }
    
    .service-item,
    .security-item,
    .right-item,
    .contact-item {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    /* Privacy page small mobile adjustments */
    .policy-section {
        padding: 1.5rem 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .subsection,
    .important-note {
        padding: 1rem;
    }
}

/* Animation enhancements for privacy page */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section {
    animation: slideInUp 0.6s ease-out;
}

.policy-section:nth-child(even) {
    animation-delay: 0.1s;
}

.policy-section:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Smooth scrolling for all internal links */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.nav-link:focus,
.action-link:focus,
.footer-section a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles for privacy policy */
@media print {
    .header,
    .nav,
    .footer {
        display: none;
    }
    
    .policy-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
        margin-bottom: 1rem;
    }
    
    .policy-section::before {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        box-shadow: none;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}