/* ============================================
   ФОРМА
============================================ */
.hvoya-form {
    max-width: 600px !important;  /* ширина форми */
    width: 100% !important;
    padding: 25px !important;     /* внутрішні відступи */
    border-radius: 14px !important;
    background: #f6f6f6 !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-bottom: 30px !important;
}

.hvoya-form input,
.hvoya-form textarea {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 8px !important;
    border: 1px solid #ccc !important;
    box-sizing: border-box !important;
}

/* Кнопка */
.hvoya-btn {
    background: #f9b300 !important;
    color: #000 !important;
    padding: 14px 20px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    transition: background 0.3s ease !important;
}

.hvoya-btn:hover {
    background: #e6a000 !important;
}

/* ============================================
   КАРТОЧКИ ВІДГУКІВ
============================================ */
.hvoya-cards-row {
    display: flex !important;
    gap: 25px !important;
}

.hvoya-card {
    flex: 1 1 400px !important;  /* ширина картки */
    border: 1px solid #ccc !important;
    padding: 20px !important;
    border-radius: 8px !important;
    background: #f9f9f9 !important;
}

/* ============================================
   АДАПТИВНІСТЬ
============================================ */
@media (max-width: 600px) {
    .hvoya-cards-row {
        flex-direction: column !important;
        gap: 14px !important;
    }
}
/* Центрування форми по горизонталі */
.hvoya-form-wrapper {
    display: flex;
    justify-content: center; /* по горизонталі */
    align-items: center;     /* по вертикалі, якщо потрібно на всю висоту */
    width: 100%;
    margin: 0 auto;
    padding: 20px 0; /* відступи зверху/знизу */
}

/* Залишаємо стиль самої форми */
.hvoya-form {
    max-width: 600px !important;
    width: 100% !important;
    padding: 25px !important;
    border-radius: 14px !important;
    background: #f6f6f6 !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-bottom: 30px !important;
}
