.privacy-policy-page {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.policy-header {
    text-align: center;
    margin-top: 3.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.policy-header .effective-date {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.policy-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #3498db;
}

.policy-section h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-section p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-category {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3498db;
}

.info-category:last-child {
    margin-bottom: 0;
}

.usage-list,
.sharing-list,
.rights-list {
    list-style-type: none;
    padding-left: 0;
}

.usage-list li,
.sharing-list li,
.rights-list li {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.usage-list li::before,
.sharing-list li::before,
.rights-list li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rights-contact {
    background-color: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.policy-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* RTL Support */
[dir="rtl"] .info-category {
    border-left: none;
    border-right: 4px solid #3498db;
}

[dir="rtl"] .usage-list li,
[dir="rtl"] .sharing-list li,
[dir="rtl"] .rights-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .usage-list li::before,
[dir="rtl"] .sharing-list li::before,
[dir="rtl"] .rights-list li::before {
    left: auto;
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 2rem 0;
    }

    .policy-header {
        padding: 1.5rem;
    }

    .policy-header .page-title {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
} 