/* Privacy Policy Page Styles */

/* Override app-container for privacy policy page */
.app-container {
    height: auto !important;
    overflow: visible !important;
    min-height: 100vh;
}

/* Override footer margin for privacy policy page */
.site-footer {
    margin-top: 0 !important;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-content {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.highlight-box p {
    color: white;
    margin: 0;
    font-weight: 500;
}

/* Contact Information */
.contact-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Back to Tools Button */
.back-to-tools {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-2px);
}

/* Links */
.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .highlight-box {
        padding: 1.25rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .back-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 1rem;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section h3 {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .back-to-tools {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Dark Theme Adjustments */
.dark-theme .highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-theme .contact-info {
    background: var(--card-bg);
    border-left-color: var(--primary-color);
}

.dark-theme .back-to-tools {
    border-top-color: var(--border-color);
}
