/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
}

.container {
    min-height: 100vh;
    max-width: 100%;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 1rem;
}

.header-content {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shield-icon {
    font-size: 2rem;
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.back-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #1d4ed8;
    background-color: #f1f5f9;
}

.header-subtitle {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: #64748b;
}

/* Main Content */
.main-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Last Updated Box */
.last-updated {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
}

.last-updated p {
    color: #1e40af;
    font-size: 0.875rem;
}

/* Section Styles */
.section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1e293b;
}

.lock-icon,
.phone-icon,
.mail-icon {
    font-size: 1.5rem;
}

/* Content Cards */
.content-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #374151;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Lists */
.info-list,
.security-list {
    list-style: none;
    padding: 0;
}

.info-list li,
.security-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-list li:last-child,
.security-list li:last-child {
    margin-bottom: 0;
}

.bullet {
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* No Selling Notice */
.no-selling-notice {
    background-color: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.no-selling-notice p {
    color: #1e40af;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.sharing-text {
    margin-bottom: 1rem;
    color: #374151;
}

/* Rights Section */
.rights-section {
    margin-bottom: 1.5rem;
}

/* Deletion Notice */
.deletion-notice {
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.deletion-notice h4 {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.deletion-notice p {
    color: #374151;
    margin: 0;
}

/* Contact Information */
.contact-intro {
    margin-bottom: 1rem;
    color: #374151;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.25rem;
    color: #2563eb;
}

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    margin-top: 4rem;
    padding: 2rem 1rem;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.footer-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-shield span:last-child {
    color: #64748b;
}

.footer-text {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header h1 {
        font-size: 1.75rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .content-card {
        padding: 1rem;
    }

    .contact-info {
        align-items: flex-start;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .deletion-notice {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1.5rem 1rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 1.5rem 0.75rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .no-selling-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer {
        background-color: transparent !important;
        border: none !important;
    }

    .back-link {
        display: none;
    }

    .content-card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    .no-selling-notice,
    .deletion-notice,
    .last-updated {
        background-color: #f9f9f9 !important;
        border: 1px solid #ccc !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .back-link {
        transition: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .content-card {
        border: 2px solid #000;
    }
    
    .bullet {
        color: #000;
    }
    
    .back-link {
        border: 1px solid #2563eb;
    }
}