body {
  background-color: #f5f5f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section1 {
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 35px 30px;
  margin: 20px auto;
  max-width: 1200px;
}

.section-title {
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.office-info {
  color: #000;
  font-size: 14px;
  line-height: 1.4;
}

.contact-info {
  color: #000;
  font-size: 14px;
  line-height: 1.4;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  background-color: #fff;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  background-color: #fff;
  margin-bottom: 15px;

}

.captcha-section {
  margin: 15px 0;
}

.captcha-text {
  color: #000;
  font-size: 14px;
  margin-bottom: 8px;
}

.captcha-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-question {
  font-weight: 600;
  color: #333;
}

.captcha-answer {
  width: 80px;
}

.submit-btn {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #218838;
}

.content-wrapper {
  padding: 40px 0;
}


.hero-section {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}