/* Legal Pages CSS - Terms, Privacy Policy, Disclaimer */

/* General Styles */
.ed-legal-page {
    padding: 80px 0;
}

.ed-legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ed-legal-header {
    background: linear-gradient(135deg, #ffb200 0%, #e73a8c 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    border-bottom: 5px solid #8d00ec;
}

.ed-legal-header h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.ed-legal-header p {
    font-size: 1rem;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 300;
    color: #fff;
}

/* Content Styles */
.ed-legal-content {
    padding: 50px 40px;
    color: #333;
    line-height: 1.8;
}

.ed-legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.ed-legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ed-legal-section h2 {
    font-size: 1.6rem;
    color: #8d00ec;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.ed-legal-section h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #7622af, #764ba2);
    border-radius: 2px;
}

.ed-legal-section h3 {
    font-size: 1.2rem;
    color: #e73a8c;
    margin: 25px 0 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.ed-legal-section p {
    font-size: 1rem;
    letter-spacing: 1px;
    color: #555;
    margin: 0 0 15px 0;
}

.ed-legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ed-legal-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
}

.ed-legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.ed-legal-highlight {
    background: #f0f4ff;
    border-left: 4px solid #8d00ec;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    letter-spacing: 1px;
}

.ed-legal-highlight strong {
    color: #ffb200;
}

/* Location Info Box */
.ed-location-box {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 1px solid #667eea30;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ed-location-icon {
    font-size: 1.8rem;
    color: #667eea;
    margin-top: 5px;
}

.ed-location-text h4 {
    margin: 0 0 5px 0;
    color: #e73a8c;
    font-weight: 600;
    letter-spacing: 1px;
}

.ed-location-text p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Footer Section */
.ed-legal-footer {
    background: #f8f9fa;
    padding: 30px 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.ed-legal-footer p {
    margin: 10px 0;
    color: #666;
    font-size: 13px;
    letter-spacing: 1px;
}

.ed-legal-update {
    color: #999;
    font-style: italic;
    margin-top: 20px;
}

/* Button Styles */
.ed-legal-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.ed-legal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Table Styles */
.ed-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.ed-legal-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.ed-legal-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.ed-legal-table tr:hover {
    background: #f8f9fa;
}

/* Contact Section */
.ed-legal-contact {
    background: #ffb200;
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.ed-legal-contact h3 {
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ed-legal-contact p {
    margin: 10px 0;
    letter-spacing: 1px;
}

.ed-legal-contact a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ed-legal-header {
        padding: 35px 25px;
    }

    .ed-legal-header h1 {
        font-size: 1.8rem;
    }

    .ed-legal-content {
        padding: 30px 25px;
    }

    .ed-legal-section h2 {
        font-size: 1.4rem;
    }

    .ed-legal-section h3 {
        font-size: 1.1rem;
    }

    .ed-legal-list li {
        padding: 8px 0 8px 25px;
        font-size: 0.9rem;
    }

    .ed-location-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .ed-legal-table {
        font-size: 0.9rem;
    }

    .ed-legal-table th,
    .ed-legal-table td {
        padding: 10px;
    }

    .ed-legal-contact {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .ed-legal-page {
        padding: 30px 15px;
    }

    .ed-legal-container {
        border-radius: 10px;
    }

    .ed-legal-header {
        padding: 25px 15px;
    }

    .ed-legal-header h1 {
        font-size: 1.5rem;
    }

    .ed-legal-header p {
        font-size: 0.9rem;
    }

    .ed-legal-content {
        padding: 20px 15px;
    }

    .ed-legal-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .ed-legal-section h2 {
        font-size: 1.2rem;
    }

    .ed-legal-section h3 {
        font-size: 1rem;
    }

    .ed-legal-section p {
        font-size: 0.9rem;
    }

    .ed-legal-highlight {
        padding: 15px;
        margin: 15px 0;
    }

    .ed-location-box {
        padding: 15px;
    }

    .ed-legal-footer {
        padding: 20px 15px;
    }

    .ed-legal-btn {
        width: 100%;
        padding: 12px;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ed-legal-container {
    animation: slideInUp 0.6s ease-out;
}

/* Utility Classes */
.ed-text-center {
    text-align: center;
}

.ed-mt-20 {
    margin-top: 20px;
}

.ed-mb-20 {
    margin-bottom: 20px;
}

.ed-mt-40 {
    margin-top: 40px;
}

.ed-mb-40 {
    margin-bottom: 40px;
}

.ed-text-muted {
    color: #999;
    font-size: 0.9rem;
}

.ed-bg-light {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}
