body {
    font-family: 'Segoe UI', sans-serif;
    background: #f3f7fb;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
    padding: 40px;
}

.left-text {
    flex: 1;
    color: #34495e;
}

.left-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.left-text p {
    font-size: 16px;
    color: #6c7a89;
}

.form-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-size: 14px;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    border-color: #3498db;
    outline: none;
}

button {
    margin-top: 10px;
    padding: 12px;
    background: #f1c40f;
    border: none;
    border-radius: 25px;
    color: #34495e;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(241, 196, 15, 0.4);
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #f39c12;
    transform: translateY(-2px);
}

.success {
    color: green;
    margin-bottom: 10px;
}

.error {
    color: red;
    margin-bottom: 10px;
}
