* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  width: 100%;
  margin-top: 35px;
}

.image-section {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.container {
  width: 100%;
  max-width: 1375px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.left-side,
.right-side {
  width: 100%;
  padding: 1rem;
}

.left-side h2 {
  color: #4d6a6d;
  font-size: 50px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

label {
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: -15px;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  padding: 0.75rem 1.5rem;
  background-color: #4d6a6d;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  align-self: flex-start;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #71888a;
  transform: translateY(-2px);
}

.right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-container {
  width: 100%;
  height: 300px;
  margin-bottom: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto; 
}

.info .logo {
  width: 60px;
  height: auto;
  margin: 0 auto 1rem;
  display: block; 
}

.info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.office-section {
  width: 100%;
  max-width: 1375px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.section-heading h2 {
  font-size: 1.75rem;
  color: #333;
}

.divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 1rem 0 2rem;
}

.office-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(77, 106, 109, 0.2);
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}

.card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #4d6a6d;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
  }

  .left-side,
  .right-side {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .image-section {
    height: 60vh;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .card h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1023px) {
  .card {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  width: 100%;
  background-color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: black;
}

select option:disabled {
  color: #999;
}

select option {
  color: #4d6a6d;
  padding: 0.5rem;
}
