/* No-Log Policy Page Specific Styles - Dark Theme */
:root {
    --primary-color: #00AEEF;
    --primary-color-light: rgba(0, 174, 239, 0.1);
    --text-color: #E0E0E0;
    --heading-color: #FFFFFF;
    --background-color: #0D1117;
    --light-gray: #161B22;
    --gray: #8B949E;
    --border-color: #30363D;
    --success-color: #22c55e;
    --danger-color: #ef4444;
    --card-background: #1A202C;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    direction: rtl;
    scroll-behavior: smooth;
}

.no-log-policy-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* General Section Styling */
.no-log-policy-page section {
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.no-log-policy-page section:last-child {
    border-bottom: none;
}

.no-log-policy-page h1, .no-log-policy-page h2, .no-log-policy-page h3, .no-log-policy-page h4 {
    color: var(--heading-color);
    font-weight: 700;
}

.no-log-policy-page h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.4; margin-bottom: 20px; }
.no-log-policy-page h2 { font-size: 2.5rem; margin-bottom: 60px; font-weight: 800; }
.no-log-policy-page .highlight { color: var(--primary-color); }

.no-log-policy-page p { font-size: 1.1rem; color: var(--gray); max-width: 800px; margin: 0 auto 20px auto; line-height: 1.8; }

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 80px;
    background: radial-gradient(ellipse at top, var(--light-gray), var(--background-color) 70%);
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-content .cta-button {
    background-color: var(--primary-color);
    color: var(--heading-color);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.2);
    display: inline-block;
}

.hero-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.3);
}

.scroll-down-btn {
    display: block;
    margin-top: 60px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.scroll-down-btn:hover {
    color: var(--heading-color);
}
.scroll-down-btn i {
    margin-right: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Data Policy Section */
.data-policy .data-we-collect {
    margin-top: 100px;
}
.policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: right;
}
.policy-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.card-header i {
    font-size: 1.8rem;
}
.policy-card.negative .card-header i {
    color: var(--danger-color);
}
.policy-card.positive .card-header i {
    color: var(--success-color);
}
.card-header h3 {
    font-size: 1.4rem;
    margin: 0;
}
.card-body p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Principles Section */
.principles {
    background-color: var(--light-gray);
}
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.principle-item {
    text-align: center;
}
.principle-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.principle-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.principle-item p {
    font-size: 1rem;
    color: var(--gray);
}


/* CTA Section */
.cta {
    background-color: var(--light-gray); /* Fallback */
}
.cta h2 {
    font-size: 2.2rem;
}
.cta .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--heading-color);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}
.cta .cta-button:hover {
    background-color: #0095c7;
    transform: translateY(-2px);
}

.final-cta {
    margin-bottom: 5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .no-log-policy-page h1 { font-size: 2.5rem; }
    .no-log-policy-page h2 { font-size: 2rem; }
    .policy-cards { grid-template-columns: 1fr; }
}

/* FAQ Section */
.faq {
    background-color: var(--background-color);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.1);
}
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
}
.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--background-color);
}
.faq-answer p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    text-align: right;
}