/* Legal Pages (Privacy & Terms) */
.legal-container {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content {
    padding-right: 2rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 0.75rem;
}

.section-text strong {
    font-weight: 600;
    color: #1e293b;
}

.legal-image {
    position: relative;
    top: 2rem;
    height: fit-content;
}

.legal-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .legal-container {
        grid-template-columns: 1fr;
    }

    .legal-image {
        position: relative;
        top: 0;
    }

    .legal-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .legal-container {
        padding: 2rem 1rem;
    }
}
