

.contact-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.form-wrapper,
.info-wrapper {
    flex: 1 1 400px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-wrapper h2,
.info-wrapper h3 {
    margin-bottom: 20px;
    color: #333;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: none;
}

form button {
    width: 100%;
    padding: 14px;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #128c7e;
}

.info-wrapper p {
    margin: 10px 0;
    color: #555;
}
