

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}


.banner {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-image: linear-gradient(rgba(15, 15, 15, 0.75), rgba(15, 15, 15, 0.75)), url(../images/Copy\ of\ London.png);
}


.abt {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-left: 350px;
}


.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px; 
}


.contact-container {
    background: rgb(255, 255, 255);
    padding: 40px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(15, 15, 15, 0.1);
    text-align: left;
}


.title {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 70px;
}


.form-group {
    display: flex;
    gap: 50px;
}


.input-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-box label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}


input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f3f3f3;
}


input[readonly] {
    background-color: #e0e0e0;
}


textarea {
    resize: vertical;
    height: 120px;
}


button {
    background-color: #228B22;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #333;
}


/* @media (max-width: 768px) {
    .contact-container {
        width: 90%;
    }
    .form-group {
        flex-direction: column;
    }
} */
