/* Legal Pages Styles - Terms and Conditions, Privacy Policy */

body {
    background-color: #ffffff;
    color: #000000;
}

.main-content {
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
    color: #000000;
    background-color: #ffffff;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.legal-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-subtitle {
    font-size: 1rem;
    color: #666666;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-section-content {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 15px;
}

.legal-section-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.legal-section-content li {
    margin-bottom: 8px;
    color: #000000;
}

.legal-section-content p {
    color: #000000;
    margin-bottom: 10px;
}

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

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        max-width: 100%;
    }

    .legal-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .legal-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .legal-subtitle {
        font-size: 0.95rem;
    }

    .legal-section {
        margin-bottom: 30px;
    }

    .legal-section-title {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .legal-section-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .legal-section-content ul {
        margin-left: 18px;
    }

    .legal-section-content li {
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .back-link {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 20px 15px;
        line-height: 1.7;
    }

    .legal-header {
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .legal-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .legal-subtitle {
        font-size: 0.9rem;
    }

    .legal-section {
        margin-bottom: 25px;
    }

    .legal-section-title {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .legal-section-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .legal-section-content p {
        margin-bottom: 12px;
    }

    .legal-section-content ul {
        margin-left: 16px;
        margin-top: 8px;
    }

    .legal-section-content li {
        margin-bottom: 8px;
        line-height: 1.6;
        font-size: 0.9rem;
    }

    .back-link {
        padding: 10px 18px;
        font-size: 0.9rem;
        margin-top: 25px;
    }
}

@media (max-width: 360px) {
    .legal-content {
        padding: 18px 12px;
    }

    .legal-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .legal-subtitle {
        font-size: 0.85rem;
    }

    .legal-section-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .legal-section-content {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .legal-section-content ul {
        margin-left: 14px;
    }

    .legal-section-content li {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .back-link {
        padding: 9px 16px;
        font-size: 0.85rem;
    }
}





















