/* Privacy Policy Page Styles */
:root {
    --burgundy-color: #8b0000;
    --burgundy-light: #a52a2a;
    --burgundy-dark: #6b0000;
}

/* Gizlilik Politikası Sayfası Stilleri */

/* Hero Bölümü */
.privacy-hero {
    background-image: url("../images/privacy-bg.jpg");
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 300px;
}

.privacy-hero .hero-content h1 {
    font-size: 3rem;
}

/* Ana İçerik Bölümü */
.privacy-content {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.privacy-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/pattern-bg.png");
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.04;
    z-index: 1;
}

.privacy-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Başlık Bölümü */
.privacy-header {
    padding: 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(to right, #f9f9f9, #fff, #f9f9f9);
    border-bottom: 1px solid #eee;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.privacy-icon i {
    font-size: 32px;
    color: var(--burgundy-color); /* Changed to burgundy */
}

.privacy-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--burgundy-color); /* Changed to burgundy */
    margin-bottom: 15px;
}

.privacy-date {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 30px;
    margin-top: 10px;
}

.privacy-date span {
    font-size: 0.9rem;
    color: var(--burgundy-color); /* Changed to burgundy */
    font-weight: 500;
}

/* Belge İçeriği */
.privacy-document {
    padding: 40px;
}

.privacy-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.section-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-divider::before,
.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(200, 169, 126, 0.3),
        transparent
    );
}

.divider-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
}

.divider-icon i {
    font-size: 16px;
    color: var(--burgundy-color); /* Changed to burgundy */
}

.privacy-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--burgundy-color); /* Changed to burgundy */
    margin-bottom: 15px;
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

/* Liste Stilleri */
.privacy-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.privacy-list li i {
    color: var(--burgundy-color); /* Changed to burgundy */
    margin-right: 12px;
    font-size: 16px;
    margin-top: 3px;
}

.privacy-list li span {
    color: #555;
    line-height: 1.7;
}

/* İletişim Kutusu */
.contact-info-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid #eee;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--burgundy-color); /* Changed to burgundy */
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item div {
    flex: 1;
}

.contact-item span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--burgundy-color); /* Changed to burgundy */
    margin-bottom: 3px;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--burgundy-color); /* Changed to burgundy */
}

.contact-item address {
    color: #555;
    font-style: normal;
    line-height: 1.5;
    margin: 0;
}

/* Alt Bilgi Bölümü */
.privacy-footer {
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.seal-of-approval {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.seal-icon i {
    font-size: 22px;
    color: var(--burgundy-color); /* Changed to burgundy */
}

.seal-text p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Animasyonlar */
.fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 992px) {
    .privacy-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .privacy-content {
        padding: 70px 0;
    }

    .privacy-container {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .privacy-hero {
        height: 40vh;
    }

    .privacy-hero .hero-content h1 {
        font-size: 2.2rem;
    }

    .privacy-header {
        padding: 30px;
    }

    .privacy-header h2 {
        font-size: 1.8rem;
    }

    .privacy-icon {
        width: 70px;
        height: 70px;
    }

    .privacy-icon i {
        font-size: 28px;
    }

    .privacy-document {
        padding: 30px;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .contact-info-box {
        padding: 20px;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .privacy-hero {
        min-height: 300px;
    }

    .privacy-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .privacy-header {
        padding: 25px 20px;
    }

    .privacy-header h2 {
        font-size: 1.6rem;
    }

    .privacy-document {
        padding: 20px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .seal-of-approval {
        flex-direction: column;
        text-align: center;
    }

    .seal-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
