/* Privacy Policy Specific Styles */

.privacy-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: 100vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-4px);
}

.logo-small {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    display: block;
}

.privacy-container h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.policy-content section {
    margin-bottom: 40px;
}

.policy-content section:last-child {
    margin-bottom: 0;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -0.01em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.policy-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.policy-content ul li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.policy-content ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

.policy-content strong {
    color: #ffffff;
    font-weight: 600;
}

.policy-content a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-content a:hover {
    color: #93c5fd;
    border-bottom-color: #93c5fd;
}

.footer-links {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 30px 15px 60px;
    }

    .privacy-container h1 {
        font-size: 36px;
    }

    .policy-content {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .policy-content h2 {
        font-size: 24px;
    }

    .policy-content h3 {
        font-size: 18px;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 15px;
    }

    .logo-small {
        width: 100px;
    }
}

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

    .policy-content {
        padding: 25px 20px;
    }

    .policy-content h2 {
        font-size: 22px;
    }

    .back-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}