.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Трохи темніший фон для фокусу */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #f9f9f9; /* Світлий фон як на сайті */
    padding: 40px;
    border-radius: 15px; /* Заокруглення як у блоків сторінки */
    border: 2px solid #1f6b4a; /* Фірмова зелена рамка */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 600px;
    position: relative;
    text-align: center; /* Центруємо заголовки */
    animation: slideDown 0.4s ease-out;
}

/* Анімація появи */
@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-content h3 {
    color: #555;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 25px;
}

#orderForm label {
    display: block;
    margin-top: 15px;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
    color: #333;
}

#orderForm input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px; /* Заокруглені поля вводу */
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

#orderForm input:focus {
    outline: none;
    border-color: #1f6b4a; /* Підсвітка зеленим при натисканні */
}

/* Кнопка в стилі вашого сайту */
.submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 30px;
    background: linear-gradient(135deg, #2d7a5a, #1f6b4a); /* Градієнт як на кнопках КУПИТИ */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 107, 74, 0.3);
}

.close-btn {
    color: #777;
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}