/* Privacy Policy Page Styles */
.privacy-content {
    padding: 120px 0 60px;
    background-color: var(--light-bg);
    min-height: calc(100vh - 72px);
}

.privacy-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.app-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.app-info .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.app-info h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.app-info .app-description {
    color: #666;
    text-align: center;
    max-width: 600px;
}

.language-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.language-toggle button {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray);
    transition: all 0.3s ease;
}

.language-toggle button.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.language-toggle button:hover:not(.active) {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.privacy-text {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    display: none;
}

.privacy-text.active {
    display: block;
}

.privacy-text .last-updated {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    text-align: right;
}

.privacy-text section {
    margin-bottom: 1rem;
    padding: 0;
}

.privacy-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.privacy-text p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.privacy-text ul {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-text li {
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.privacy-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-bottom: 2rem;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-link a i {
    margin-right: 0.5rem;
}

.back-link a:hover {
    color: var(--secondary-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .privacy-content {
        padding: 100px 0 40px;
    }
    
    .app-info, .privacy-text {
        padding: 1rem;
    }
} 