﻿body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-section {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    color: #333;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.26);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.6);
    max-width: 900px;
    width: 90%;
    margin: 8em auto;
}

.privacy-container h1 {
    font-size: 2.8rem;
    color: #1a5276;
    text-align: center;
    font-weight: 700;
}

.privacy-container h2 {
    font-size: 1.8rem;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #21618C;
    border-bottom: 1px solid rgba(33, 97, 140, 0.3);
    padding-bottom: 8px;
    text-align: left;
}

.privacy-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
    text-align: left;
}

.privacy-container a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .privacy-container a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

@media (max-width: 768px) { /* Tablet ve daha küçük ekranlar */
    .privacy-container h1 {
        font-size: 2.2rem;
    }

    .privacy-container h2 {
        font-size: 1.5rem;
    }

    .privacy-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) { /* Telefon ekranları */
    .privacy-container h1 {
        font-size: 1.8rem;
    }

    .privacy-container h2 {
        font-size: 1.3rem;
    }
}
