.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 250px;
  margin-bottom: 20px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.logo-container {
  text-align: center;
  padding: 20px 0;
}

.logo-container img {
  max-width: 200px;
  height: auto;
}

h1 {
  color: #007BFF;
  text-align: center;
  margin-bottom: 30px;
}

.form-container {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

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

.form-group label {
  display: block;
  font-weight: bold;
  color: #333;
}

.form-group input[type="text"],
.form-group textarea,
.form-group input[type="email"] {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  color: #333;
  border: none;
  border-radius: 4px;
  border: 1px solid #ddd;
}

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

.submit-btn {
  background-color: #8c6a51;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}


/* Add CSS styling for the location containers */
.location-containers {
  display: flex;
  flex-wrap: wrap; /* Enable wrapping to control layout on smaller screens */
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0;
}

/* Add CSS styling for the individual location containers */
.location-container {
  flex-basis: calc(50% - 20px); /* Adjust the width to fit two containers side by side */
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Align location-info to the center */
.location-container .location-info {
  text-align: center;
}

/* Style for h2 inside location-info */
.location-container .location-info h2 {
  color: #8c6a51;
  margin-bottom: 10px;
  text-align: center;
}

/* Style for the map container */
.map-container-singapore{
  flex-basis: calc(50% - 20px); /* Adjust the width to match the location container */
  padding: 20px;
  display: flex;
  align-items: center; /* Vertically center map within its container */
  justify-content: center; /* Horizontally center map within its container */
  height: 410px; /* Set the height to match its parent container (.location-container singapore) */
}
/* Style for the map container */
.map-container-malaysia{
  flex-basis: calc(50% - 20px); /* Adjust the width to match the location container */
  padding: 20px;
  display: flex;
  align-items: center; /* Vertically center map within its container */
  justify-content: center; /* Horizontally center map within its container */
  height: 297.5px; /* Set the height to match its parent container (.location-container singapore) */
}

/* Style for the map iframe */
.map iframe {
  max-width: 100%; /* Ensure the map iframe does not exceed its container's width */
  max-height: 100%; /* Ensure the map iframe does not exceed its container's height */
}