/* legal-pages.css - Shared CSS for Privacy Policy, Terms & Conditions, and Cookies Policy */

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

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #667eea;
}

.privacy-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.privacy-header .last-updated {
    color: #6c757d;
    font-size: 0.95rem;
    font-style: italic;
}

.privacy-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.privacy-intro p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon {
    width: 28px;
    height: 28px;
    color: #667eea;
    flex-shrink: 0;
}

.privacy-section h3 {
    color: #495057;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section h4 {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #28a745;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.highlight-box strong {
    color: #28a745;
}

.highlight-box p,
.highlight-box ul,
.highlight-box li {
    color: #2c3e50;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.warning-box strong {
    color: #856404;
}

.warning-box p,
.warning-box ul,
.warning-box li {
    color: #856404;
}

.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.contact-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-box p {
    color: white;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.contact-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.contact-box a:hover {
    opacity: 0.8;
}

.btn-contact {
    background: var(--dark-orange);
    color: #667eea;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #667eea;
    text-decoration: none;
}

.table-responsive {
    overflow-x: auto;
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 2rem 1rem;
    }

    .privacy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-intro {
        padding: 1.5rem;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-icon {
        width: 24px;
        height: 24px;
    }

    .privacy-section h3 {
        font-size: 1.15rem;
    }

    .privacy-section ul,
    .privacy-section ol {
        margin-left: 1rem;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .contact-box h3 {
        font-size: 1.25rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.75rem;
    }

    /* Make tables scroll on mobile */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.75rem;
    }

    .privacy-section h2 {
        font-size: 1.35rem;
    }

    th, td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}