.legal-content {
    padding: 140px 0 100px;
}

.text-block {
    max-width: 800px;
    width: 100%;
}

.text-block p strong {
    color: #fff;
    font-weight: 700;
    display: inline-block;
}

.text-block h1 {
    font-family: 'Momo Trust Display', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.text-block h2 {
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 25px;
    color: #fff;
}

.text-block h3 {
    font-size: 19px;
    margin-top: 40px; 
    margin-bottom: 20px;
    color: #eee;
}

.text-block p {
    font-family: 'Rubik', sans-serif;
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-block ul {
    margin-left: 20px;
    margin-bottom: 30px; 
    list-style-type: disc;
}

.text-block li {
    font-family: 'Rubik', sans-serif;
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 10px;
}

.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 18px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.5;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #444;
}

.submit-btn {
    background: #fff;
    color: #000;
    padding: 18px 45px;
    border: none;
    border-radius: 4px;
    font-family: 'Momo Trust Display', sans-serif;
    font-size: 18px;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
}