/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header styles */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}



/* Main content styles */
.main-content {
    padding: 2rem 0;
}

.privacy-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.home-button {
    display: inline-block;
    position: relative;
    left: 0;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.2s, box-shadow 0.2s;
    z-index: 2;
}
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Privacy content styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #667eea;
    letter-spacing: -0.01em;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    text-align: justify;
}

.section-text strong {
    color: #ffffff;
    font-weight: 600;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #667eea;
    letter-spacing: -0.01em;
}

.tech-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.tech-list li {
    margin-bottom: 0.8rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.tech-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-basis-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-basis-list li {
    margin-bottom: 1rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.legal-basis-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.purpose-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.purpose-list li {
    margin-bottom: 0.8rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.tech-categories-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.tech-categories-list li {
    margin-bottom: 1rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.tech-categories-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.service-provider-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-provider-list li {
    margin-bottom: 0.8rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.service-provider-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-info {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    text-align: center;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}



.important-note {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.note-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #667eea;
}

.note-text {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.7;
}

.note-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Footer styles */
.footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #667eea;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        text-align: center;
    }
    
    .privacy-container {
        padding: 2rem;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1.5rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-container {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects for interactive elements */
.footer-link {
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}
