/* TempFile Privacy Policy Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    transition: all 0.3s ease;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    margin-bottom: 40px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #000000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.025em;
}

.tagline {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.nav-section {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000000;
    color: #000000;
    transform: translateY(-1px);
}

.nav-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Legal Content */
.legal-content {
    margin: 0 auto;
    padding: 0 0 10px 0;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.legal-content h1 .nav-icon {
    width: 32px;
    height: 32px;
}

.legal-content > p:first-of-type {
    text-align: center;
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 20px 0 10px 0;
}

.legal-content p {
    margin-bottom: 15px;
    color: #333333;
    text-align: justify;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #333333;
}

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

.legal-content a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Privacy Highlight Box */
.privacy-highlight {
    background: #f8f8f8;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-highlight strong {
    color: #000000;
    font-weight: 600;
}

/* Contact Info Box */
.contact-info {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #333333;
}

.contact-info a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

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

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.theme-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    .header-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

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

    .nav-section {
        justify-content: center;
    }
    
    .nav-btn {
        padding: 10px 6px;
    }

    .legal-content {
        padding: 0;
    }

    .legal-content h1 {
        font-size: 1.6rem;
        flex-direction: row;
        gap: 8px;
    }

    .legal-content h2 {
        font-size: 1.2rem;
        margin: 30px 0 15px 0;
    }

    .legal-content p {
        text-align: left;
    }

    .privacy-highlight,
    .contact-info {
        padding: 20px;
        margin: 20px 0;
    }

    .theme-toggle {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* Dark Mode Styles */
body.dark-theme {
    background-color: #1a1a1a;
    color: #ffffff;
}

body.dark-theme .header {
    background: #1a1a1a;
    border-bottom: 1px solid #404040;
}

body.dark-theme .logo-icon {
    stroke: #ffffff;
}

body.dark-theme .logo h1 {
    color: #ffffff;
}

body.dark-theme .tagline {
    color: #cccccc;
}

body.dark-theme .nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 2px solid transparent;
}

body.dark-theme .nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
}

body.dark-theme .legal-content h1 {
    color: #ffffff;
}

body.dark-theme .legal-content > p:first-of-type {
    color: #cccccc;
}

body.dark-theme .legal-content h2 {
    color: #ffffff;
    border-bottom: 2px solid #404040;
}

body.dark-theme .legal-content h3,
body.dark-theme .legal-content h4 {
    color: #ffffff;
}

body.dark-theme .legal-content p,
body.dark-theme .legal-content li {
    color: #cccccc;
}

body.dark-theme .legal-content strong {
    color: #ffffff;
}

body.dark-theme .legal-content a {
    color: #ffffff;
}

body.dark-theme .privacy-highlight {
    background: #2d2d2d;
    border: 2px solid #404040;
    color: #cccccc;
}

body.dark-theme .privacy-highlight strong {
    color: #ffffff;
}

body.dark-theme .contact-info {
    background: #2d2d2d;
    border: 1px solid #404040;
}

body.dark-theme .contact-info h3 {
    color: #ffffff;
}

body.dark-theme .contact-info p {
    color: #cccccc;
}

body.dark-theme .contact-info a {
    color: #ffffff;
}

body.dark-theme .footer {
    border-top: 1px solid #404040;
    color: #cccccc;
}

body.dark-theme .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #404040;
    color: #ffffff;
}

body.dark-theme .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}