.contact-main {
    padding: 60px 1.25rem;
    background-image: url('../images/bg_contact.png');
    background-position: center;
    width: 100%;
    background-size: cover;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.title-main {
    font-size: 64px;
    color: var(--color-active);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.form-section {
    background-color: #FFF0CACC;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.641);
    border-radius: 4px;
}

.form-group {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #000;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group>input {
    width: 100%;
    background: transparent;
    outline: none;
    border: none;
}

.form-group textarea {
    width: 100%;
    min-height: 150px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
    box-sizing: border-box;
}

.button_send {
    padding: 12px 24px;
    border: 1px solid var(--color-active);
    background-color: var(--color-active);
    font-size: 1rem;
    border-radius: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .title-main {
        width: 100%;
        font-size: 40px;
        text-align: center;
    }

    .form-section {
        padding: 1.5rem;
    }
}