/* Privacy page specific styles */
.privacy-container {
    padding: 20px 0;
}

.privacy-container h1 {
    margin-bottom: 15px;
}

.privacy-container h2 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
    text-align: left;
}

.privacy-container p, 
.privacy-container ul,
.privacy-container ol {
    margin-bottom: 15px;
    text-align: left;
}

.privacy-container ul,
.privacy-container ol {
    margin-left: 20px;
}

.privacy-container li {
    margin-bottom: 8px;
}

.privacy-switcher {
    display: flex;
    margin: 20px 0;
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.privacy-switcher button {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.privacy-switcher button.active {
    background-color: var(--primary-color);
    color: white;
}

.privacy-content {
    display: none;
}

.privacy-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.back-link {
    display: inline-block;
    margin: 20px 0;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-icon {
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%233b4250" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center;
    filter: var(--icon-filter);
}

/* Mobile responsiveness for privacy page */
@media (max-width: 600px) {
    .privacy-switcher {
        flex-direction: column;
    }
    
    .privacy-switcher button {
        border-radius: 4px;
        margin-bottom: 5px;
    }
    
    .privacy-container h2 {
        font-size: 1.2rem;
    }
}

/* Additional mobile-specific improvements */
@media (max-width: 480px) {
    .privacy-container h1 {
        font-size: 1.4rem;
    }
    
    .privacy-container h2 {
        font-size: 1.1rem;
    }
    
    .privacy-container ul,
    .privacy-container ol {
        margin-left: 15px;
    }
}