* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fdf6 0%, #f1f8e8 100%);
    min-height: 100vh;
    color: #2d3748;
    line-height: 1.6;
    padding: 20px;
}

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

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(119, 142, 100, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 50px;
}

.app-icon {
    margin-bottom: 20px;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.app-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #778E64;
    margin: 0;
}

/* Privacy Content */
.privacy-content {
    text-align: left;
}

.privacy-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.intro-section {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #778E64;
}

.intro-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
}

.section {
    margin-bottom: 35px;
}

.section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #778E64;
    margin-bottom: 15px;
}

.section p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.section li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 8px;
}

.section a {
    color: #778E64;
    text-decoration: none;
    font-weight: 500;
}

.section a:hover {
    text-decoration: underline;
    color: #5f6b4f;
}

.final-section {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(119, 142, 100, 0.2);
}

.closing {
    font-weight: 500;
    color: #778E64;
    font-size: 1.1rem;
}

/* Back Button */
.back-section {
    margin-top: 40px;
    text-align: center;
}

.back-btn {
    background: linear-gradient(135deg, #778E64, #95b377);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(119, 142, 100, 0.3);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(119, 142, 100, 0.4);
    background: linear-gradient(135deg, #5f6b4f, #778E64);
}

.back-btn:active {
    transform: translateY(0);
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(119, 142, 100, 0.2);
    border-radius: 25px;
    color: #778E64;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-link:hover {
    background: rgba(119, 142, 100, 0.1);
    border-color: #778E64;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .app-name {
        font-size: 2rem;
    }
    
    .privacy-title {
        font-size: 1.6rem;
    }
    
    .intro-section, .final-section {
        padding: 20px;
    }
    
    .section h3 {
        font-size: 1.2rem;
    }
    
    .section p, .section li {
        font-size: 0.95rem;
    }
}