body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-height: 50px;
}
img{
    cursor: pointer;
}
.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.contact-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #333;
}

.form-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

form {
    flex: 1;
    margin-right: 20px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.submit-button {
    background-color: #ff833e;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #b03a3a;
}

.contact-details {
    flex: 1;
    margin-left: 20px;
    max-width: 400px;
}

.contact-details h2 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.contact-details p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }

    form {
        margin-right: 0;
    }

    .contact-details {
        margin-left: 0;
        margin-top: 20px;
    }
}
