/* ================================
   PRIVACY POLICY PAGE STYLES
   ================================ */

/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #ff5d15 0%, #ff8c5a 100%);
    padding: 100px 0 80px;
    color: #ffffff;
}

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

.privacy-header h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.last-updated {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* Privacy Content Section */
.privacy-content {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar Navigation */
.privacy-sidebar {
    position: sticky;
    top: 100px;
}

.privacy-nav h3 {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.privacy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-nav li {
    margin-bottom: 4px;
}

.privacy-nav a {
    display: block;
    padding: 10px 16px;
    color: #6b7280;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.privacy-nav a:hover {
    color: #ff5d15;
    background: #FFF5F0;
    border-left-color: #ff5d15;
}

.privacy-nav a.active {
    color: #ff5d15;
    background: #FFF5F0;
    border-left-color: #ff5d15;
    font-weight: 600;
}

/* Main Content */
.privacy-main {
    max-width: 800px;
}

.privacy-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.privacy-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #010101;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.privacy-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

/* Lists */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.privacy-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.privacy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff5d15;
    font-weight: 700;
    font-size: 18px;
}

.privacy-list li strong {
    color: #1f2937;
    font-weight: 600;
}

/* Info Boxes */
.info-box {
    background: #EFF6FF;
    border: 2px solid #60A5FA;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box strong {
    color: #1E40AF;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.info-box p {
    color: #1E3A8A;
    margin: 0;
    font-size: 15px;
}

.warning-box {
    background: #FEF3C7;
    border: 2px solid #F59E0B;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.warning-box strong {
    color: #92400E;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.warning-box p {
    color: #78350F;
    margin: 0;
    font-size: 15px;
}

.action-box {
    background: #F0FDF4;
    border: 2px solid #10B981;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.action-box h4 {
    color: #065F46;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-size: 18px;
}

.action-box p {
    color: #047857;
    margin: 0;
    font-size: 15px;
}

.action-box a {
    color: #059669;
    font-weight: 600;
    text-decoration: underline;
}

.action-box a:hover {
    color: #047857;
}

/* Security Features Grid */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.security-item {
    background: #F7F8FB;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #ff5d15;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 93, 21, 0.15);
}

.security-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.security-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.security-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Contact Info Box */
.contact-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
    padding: 32px;
    background: #F7F8FB;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.contact-method h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.contact-method p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.contact-method a {
    color: #ff5d15;
    text-decoration: none;
    font-weight: 600;
}

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

/* Compliance Section */
.compliance-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e5e7eb;
}

.compliance-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #010101;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.badge {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.badge-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.badge h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.badge p {
    font-size: 14px;
    color: #10b981;
    margin: 0;
    font-weight: 600;
}

/* Links */
.privacy-main a {
    color: #ff5d15;
    font-weight: 600;
    text-decoration: none;
}

.privacy-main a:hover {
    text-decoration: underline;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */

@media (max-width: 1024px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-sidebar {
        position: static;
        background: #F7F8FB;
        padding: 24px;
        border-radius: 16px;
        border: 2px solid #e5e7eb;
    }

    .privacy-nav {
        max-width: 100%;
    }

    .privacy-nav ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 8px;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .compliance-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 0 60px;
    }

    .privacy-header h1 {
        font-size: 48px;
    }

    .last-updated {
        font-size: 16px;
    }

    .privacy-content {
        padding: 60px 0;
    }

    .privacy-section {
        margin-bottom: 48px;
    }

    .privacy-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .privacy-section h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .privacy-section p {
        font-size: 16px;
    }

    .privacy-list li {
        font-size: 16px;
        padding-left: 28px;
        margin-bottom: 12px;
    }

    .contact-info-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .compliance-section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .compliance-badges {
        grid-template-columns: 1fr;
    }

    .privacy-nav ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 36px;
    }

    .last-updated {
        font-size: 14px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section h3 {
        font-size: 18px;
    }

    .privacy-section p,
    .privacy-list li {
        font-size: 15px;
    }

    .security-item,
    .badge {
        padding: 20px 16px;
    }

    .security-icon,
    .badge-icon {
        font-size: 40px;
    }

    .info-box,
    .warning-box,
    .action-box {
        padding: 16px 20px;
    }
}

/* ================================
   SCROLL BEHAVIOR
   ================================ */

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff5d15;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4c00;
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .privacy-sidebar,
    header,
    footer,
    .nav-buttons,
    .mobile-menu-toggle {
        display: none !important;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-main {
        max-width: 100%;
    }

    .privacy-section {
        page-break-inside: avoid;
    }

    .privacy-hero {
        background: #ffffff;
        color: #000000;
        padding: 20px 0;
    }

    a {
        color: #000000;
        text-decoration: underline;
    }
}

/* ================================
   ACCESSIBILITY
   ================================ */

/* Focus styles */
.privacy-nav a:focus,
.privacy-main a:focus {
    outline: 3px solid #ff5d15;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .privacy-nav a {
        border: 1px solid currentColor;
    }

    .info-box,
    .warning-box,
    .action-box {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}