.service-section {
   
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    z-index: 1;
}


.form-wrapper {
 
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 2;
}
.service-section .services_hero__corner

 {
    position: absolute;
    width: 10px;
    height: 10px;
    background: url(https://5.berezovskyi.space/wp-content/uploads/2025/08/Rectangle-12.png) no-repeat center / contain;
    z-index: 3;
    pointer-events: none;
    display: none;
}
/* 🟧 Кути */
.corner {
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    background: url('https://5.berezovskyi.space/wp-content/uploads/2025/08/Rectangle-12.png') no-repeat center center / contain;
    z-index: 5;
    pointer-events: none;
}

/* 🔽 Кути виходять за межі СЕКЦІЇ */
.corner.tl {
    top: -5px;
    left: -5px;
}

.corner.tr {
    top: -5px;
    right: -5px;
}

.corner.bl {
    bottom: -5px;
    left: -5px;
}

.corner.br {
    bottom: -5px;
    right: -5px;
}


.form-wrapper h2 {
    color: #E47600;
    text-align: center;
    font-family: Gilroy;

    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
}

.form-group input {
    border-radius: 4px;
    background: #FFF;
    border: none;
    font-size: 14px;
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    max-width: 180px;
}

.form-group select {
    width: 100%;
    border-radius: 4px;
    background: #FFF;
    border: none;
    font-size: 14px;
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

select {
    color: #db0000;
    /* чорний текст у випадаючому списку */
    background-color: #ffffff;
    font-size: 15px;
}

.submit-btn {
    display: flex;
    height: 50px;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 0 16px;
    background: #E47600;
    box-shadow: 0 4px 20px 0 #E47600;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    color: #000;
    font-family: Gilroy;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.submit-btn:hover {
    background: #cc6600;
}

.form-group label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    color: #FFF;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    position: relative;
    bottom: 5px;
}

/* Адаптив */
@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        margin: 20px;
        border-radius: 8px;
    }

    .form-group input {
        width: 100% !important;
        max-width: 100%;
    }

    .form-wrapper {
        width: 100%;
        gap: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 12px;
    }

    .corner {
        display: none;
    }
}