/* Updated contact-styles.css file */

.contact-form {
    margin: 20px;
    padding: 20px;
    background: #4c4c4c; /* Dark grey background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: white; /* Set label text color to white */
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px); /* Adjusted width to account for padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 150px;
}

.green-button {
    background-color: #4CAF50;
    outline-color: transparent;
    border-radius: 10px;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.4s;
    box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}

.green-button:hover {
    background-color: #FFA500;
}

.map-container {
    margin: 15px;
    padding: 10px; /* Reduced padding for a smaller bezel */
    border-radius: 10px;
    background: #fff; /* White background for map */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Increase margin for the message part */
.contact-form {
    margin-right: auto; /* Move the message part to the middle of the right-hand block */
    margin-left: auto;
    width: 70%; /* Adjust the width for better centering */
}
  
  /* Add these styles to your existing CSS file */
  
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 50vh; /* Ensure the body takes at least the full height of the viewport */
}

 /* FOOTER */

 body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  footer {
    background: linear-gradient(to right, #4CAF50, #FFA500);
    padding: 20px;
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-content p {
    margin: 0;
  }
  
  .footer-content a img {
    width: 10%; /* Set the width of the image to 20% of the viewport width */
    height: auto;
  }
  /* Add these styles to your existing CSS file */
  
  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 50vh; /* Ensure the body takes at least the full height of the viewport */
  }
  
  footer {
    background: linear-gradient(to right, #4CAF50, #FFA500);
    padding: 1%;
    flex-grow: 1; /* Allow the footer to take up the remaining vertical space */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  