/* Base styles */
body {
    font-family: Arial, sans-serif;
    background-color: #b68319;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.onest {
    margin-top: 70px;
    width: 300px;
    margin-left : 200px;
    height: 70px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 90%;
    width: 100%;
}

.image-container {
    flex: 1;
    max-width: 300px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #c19200;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #c19200;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #c19200;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #b68319;
}

#message {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb; /* Border to match the background */
    border-radius: 5px;
    font-size: 16px;
    display: none; /* Initially hidden */
}

.logo-container {
    text-align: left; /* Centers the logos horizontally */
    margin-bottom: 0px; /* Adds some spacing below the logos */
}

.logo {
    width: 30px; 
    height: 30px;/* Adjusts the size of the logos */
    margin: 0 5px; /* Adds spacing between the logos */
}

/* Show the message when the 'show' class is added */
#message.show {
    display: block;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 100%;
    }

    .image-container {
        margin-bottom: 0px;
    }

    .contact-container {
        max-width: 100%; /* Ensure form takes full width on mobile */
    }
}

@media (max-width: 480px) {
    /* Additional styling for smaller mobile devices */
     .logo {
        max-width: 200px; /* Reduce logo size for mobile */
    }

    .contact-container {
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }
    
    .onest {
    margin-top: 70px;
    width: 300px;
    margin-left : 85px;
    height: 80px;
}


    input,
    button {
        font-size: 14px;
        padding: 8px;
    }
}
