/* Privacy Page Specific Styles */

:root {
    --primary-color: #667eea;
    --accent-color: #667eea;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

.privacy-main {
    min-height: 100vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1.1rem;
    color: #64748b;
    font-style: italic;
}

/* Content Sections */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.privacy-section {
    padding: 2rem 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
}

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

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
}

.privacy-section h4 {
    color: #374151;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
}

.privacy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #4b5563;
}

.privacy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

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

/* Important Notice */
.important-notice {
    background: #fef3c7;
    border: 2px solid var(--warning-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #92400e;
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.notice-content p {
    color: #92400e;
    margin: 0;
    font-weight: 500;
}

/* Security Measures */
.security-measures {
    margin: 2rem 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    text-align: center;
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.security-item h4 {
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
}

.security-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Information */
.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-info h3 {
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-method {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.contact-method strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.response-commitment {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    border-left: 3px solid var(--success-color);
}

.response-commitment p {
    margin: 0;
    color: #374151;
    font-weight: 500;
}

/* Effective Date */
.effective-date {
    background: #f1f5f9;
    text-align: center;
    border-top: 2px solid var(--accent-color);
}

.effective-date p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-copyright p {
    color: #94a3b8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .important-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 1rem 1.5rem;
    }
    
    .privacy-header {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}