.form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    width: 100%;
    max-width: 1200px;
    color: #333;
    position: relative;
    overflow: hidden;
    margin: 2rem auto;
    margin-top: 100px;
}

.form-wrapper::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background: #f68b1f;
    border-radius: 50%;
    opacity: 0.1;
}

.form-wrapper h2 {
    text-align: center;
    color: #001689;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info i {
    color: #f68b1f;
    margin-right: 0.5rem;
}

.contact-info p {
    margin: 0.3rem 0;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

form label {
    font-weight: 600;
    color: #001689;
    margin-bottom: 0.3rem;
    display: block;
}

form input,
form textarea {
    padding: 0.85rem 1rem;
    border: 1.8px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

form input:focus,
form textarea:focus {
    border-color: #f68b1f;
    box-shadow: 0 0 0 2px rgba(246, 139, 31, 0.2);
    outline: none;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form input[type="submit"],
form button {
    margin-top: 1rem;
    background-color: #f68b1f;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

form input[type="submit"]:hover,
form button:hover {
    background-color: #e67e12;
    transform: translateY(-2px);
}

body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Calibri', sans-serif;
}

.name-row {
    display: flex;
    gap: 1rem;
}

.name-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-message {
    text-align: center;
    color: #001689;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}