.privacy-policy-page {
    min-height: 100vh;
    background-color: var(--white-color);
    padding: 20px;
}

.privacy-policy-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-back-button {
    position: absolute;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pink-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.privacy-back-button:hover {
    background-color: var(--pink-color);
    transform: scale(1.1);
}

.privacy-back-button svg {
    width: 20px;
    height: 20px;
    stroke: var(--pink-color);
    transition: stroke 0.3s ease;
}

.privacy-back-button:hover svg {
    stroke: var(--white-color);
}

.privacy-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-logo img {
    max-width: 200px;
    height: auto;
}

.privacy-policy-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-policy-title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: bold;
    color: var(--black-color);
    text-align: center;
    margin-bottom: 40px;
}

.privacy-policy-text {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.8;
    color: var(--black-color);
    text-align: right;
    direction: rtl;
}

.privacy-policy-text h1,
.privacy-policy-text h2,
.privacy-policy-text h3 {
    font-family: var(--font-main);
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--pink-color);
}

.privacy-policy-text h1 {
    font-size: 36px;
}

.privacy-policy-text h2 {
    font-size: 28px;
}

.privacy-policy-text h3 {
    font-size: 22px;
}

.privacy-policy-text p {
    margin-bottom: 20px;
}

.privacy-policy-text ul,
.privacy-policy-text ol {
    margin-bottom: 20px;
    padding-right: 30px;
}

.privacy-policy-text li {
    margin-bottom: 10px;
}

.privacy-policy-text a {
    color: var(--pink-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-policy-text a:hover {
    color: var(--red-color);
}

@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 20px;
        margin: 20px auto;
    }
    
    .privacy-policy-title {
        font-size: 32px;
    }
    
    .privacy-policy-text {
        font-size: 16px;
    }
    
    .privacy-logo img {
        max-width: 150px;
    }
}
