/* Privacy Policy Page Styles */

.legal-page-container {
    width: 100%;
    min-height: 100vh;
    background: #e4e4e4;
    position: relative;
    padding: 0;
    overflow-x: hidden;
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 30px;
    position: relative;
    z-index: 5;
}

.legal-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-logo-link:hover {
    transform: translateY(-2px);
}

.legal-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.legal-brand-name {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    margin: 0;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 60px;
    position: relative;
    z-index: 4;
}

.legal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.legal-last-updated {
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0 0 40px 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.legal-text {
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.legal-subsection-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 20px 0 10px;
}

.legal-list {
    margin: 0 0 20px 20px;
    padding-left: 20px;
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
}

.legal-list li {
    margin-bottom: 8px;
}

.legal-link-inline {
    color: #000000;
    text-decoration: underline;
}

.legal-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.legal-back-link,
.legal-link {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.legal-back-link:hover,
.legal-link:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .legal-header {
        padding: 30px 20px 20px;
    }

    .legal-logo {
        height: 60px;
    }

    .legal-brand-name {
        font-size: 36px;
    }

    .legal-content-wrapper {
        padding: 0 20px 40px;
    }

    .legal-content {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .legal-title {
        font-size: 36px;
    }

    .legal-section-title {
        font-size: 20px;
    }

    .legal-text {
        font-size: 15px;
    }

    .legal-footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .legal-back-link,
    .legal-link {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .legal-header {
        padding: 20px 15px 15px;
    }

    .legal-logo {
        height: 50px;
    }

    .legal-brand-name {
        font-size: 28px;
    }

    .legal-content-wrapper {
        padding: 0 15px 30px;
    }

    .legal-content {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .legal-title {
        font-size: 28px;
    }

    .legal-last-updated {
        font-size: 14px;
    }

    .legal-section-title {
        font-size: 18px;
    }

    .legal-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .legal-footer-links {
        margin-top: 40px;
        padding-top: 25px;
    }

    .legal-back-link,
    .legal-link {
        font-size: 14px;
        padding: 12px 18px;
    }
}

