body {
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.card {
    background-color: #ffffff;
    padding: 30px;
    margin: 60px auto;
    max-width: 700px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.card h2 {
    margin-bottom: 15px;
    font-size: 26px;
    text-align: center;
}

.card p {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 500;
}

.legal-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.legal-form input,
.legal-form textarea {
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.legal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.legal-form button {
    padding: 14px;
    background-color: #2c7be5;
    color: white;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.legal-form button:hover {
    background-color: #1a5cd8;
}

/* Две колонки на больших экранах */
@media (min-width: 768px) {
    .legal-form {
        grid-template-columns: 1fr 1fr;
    }

    .legal-form textarea,
    .legal-form button {
        grid-column: 1 / -1;
    }
}
