/* ===============================================
   PRIVATUMO POLITIKOS PUSLAPIO STILIAI
   =============================================== */

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
}

.privacy-intro h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.privacy-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.privacy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-info {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
    border: 1px solid #b3d9f2;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.contact-info li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #2c3e50;
    color: white;
    border-radius: 6px;
    text-align: center;
}

.privacy-footer p {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.back-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #3498db;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   MOBILŪS ADAPTACIJOS
   =============================================== */

@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-intro h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .privacy-footer {
        padding: 1.5rem 1rem;
    }
    
    .back-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 0.5rem;
        margin: 0 0.25rem;
    }
    
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-intro h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section {
        padding: 0.75rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 0.75rem;
    }
    
    .privacy-footer {
        padding: 1rem 0.75rem;
    }
}

/* ===============================================
   PRISTATYMO ANIMACIJOS
   =============================================== */

.privacy-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }
.privacy-section:nth-child(7) { animation-delay: 0.7s; }
.privacy-section:nth-child(8) { animation-delay: 0.8s; }
.privacy-section:nth-child(9) { animation-delay: 0.9s; }
.privacy-section:nth-child(10) { animation-delay: 1s; }

/* ===============================================
   PRISTATYMO OPTIMIZACIJA
   =============================================== */

@media (prefers-reduced-motion: reduce) {
    .privacy-section {
        animation: none;
    }
    
    .back-link:hover {
        transform: none;
    }
}



