/* Gizlilik Politikası Sayfası - Basit Tasarım */

.privacy-section {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

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

.privacy-section h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-section h2 {
    font-size: 1.5rem;
    color: #4a5568;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 10px;
}

.back-link {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.back-link a {
    display: inline-block;
    padding: 12px 24px;
    background: #667eea;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.back-link a:hover {
    background: #764ba2;
    border-color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Footer stilleri - sosyal medya iconları için */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-section h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
