
/* Contact Section */
.contact-us {
  padding: 60px 20px;
  /*background-color: #f9f9f9;*/
 text-align: center;
}

.contact-us h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-us p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-us-info {
  display: flex;
  justify-content: center;
  gap: 30px; /* Add space between each box */
  flex-wrap: wrap; /* Make sure it wraps on smaller screens */
}

.contact-us-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px; /* Fixed width for each box */
  min-height: 160px; /* Ensure enough height */
}

.contact-us-box .contact-us-icon {
  margin-bottom: 15px;
  background-color: #f2d974;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* Circle shape */
  margin: 0 auto;
}

.contact-us-box .contact-us-icon i {
  font-size: 2rem;
  color: #fff;
}

.contact-us-box .contact-us-text {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-top: 10px;
  word-wrap: break-word; /* Ensure text fits within box */
  white-space: normal; /* Allow text to wrap */
}
