

.container .contact-us {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.column {
    flex: 1;
    padding: 20px;
}

.column img {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

.address {
    margin-top: 20px;
    line-height: 1.6;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-size: 1em;
}

.form-container button:hover {
    background-color: #0056b3;
}