.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.back-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.legal-title {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e6ed;
}

.section-title {
    color: #34495e;
    font-size: 20px;
    margin: 25px 0 15px;
}

.legal-text {
    color: #476282;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 30px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.contact-phone {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legal-container {
        padding: 20px;
        margin: 10px;
    }

    .legal-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 18px;
    }
}
