body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Headings */
h1,
h2 {
  color: #2c3e50;

  margin-bottom: 20px;
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

/* Paragraphs */
p {
  margin-bottom: 20px;
  /* text-align: justify; */
}

/* About Us Heading */

.about_us_heading {
  padding: 40px 20px;
  /* border-radius: 8px; */

  margin-bottom: 30px;
}

.about_us_heading h1 {
  margin: 0;

  color: #ffffff;
  text-align: center;
  /* padding-top: 5.2rem; */
}

.section {
  padding: 0;
}

.section--our-team {
  padding: 3.5rem 0;
  margin: 0 auto;
}

/* Team Section */
.section--our-team {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.our-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 50px;
}

.our-team__card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* .our-team__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
} */

.our-team__avatar {
  margin-bottom: 10px;
}

.our-team__avatar img {
  border-radius: 50%;
  /* border: 2px solid #7671bb; */
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto;
}

.our-team__author-name {
  font-size: 1.3rem;
  color: #7671bb;
  font-weight: bold;
  margin: 10px 0;
}

.our-team__title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #495057;
  margin-bottom: 10px;
}

.our-team__description {
  font-size: 1.2rem;
  color: #6c757d;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
  .our-team {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .our-team {
    grid-template-columns: 1fr;
  }

  .our-team__avatar img {
    width: 80px;
    height: 80px;
  }
}

/* contact */

.hero__heading {
  font-size: 2.5em;
  margin: 0;
}

/* Form Section Styles */
.section--about-us {
  padding: 40px;
  background-color: #fff;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 1em;
  background-color: #f9f9f9;
}

.contact-form textarea {
  resize: vertical;
}

.submit-button {
  background-color: #009688;
  color: white;
  padding: 12px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #00796b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section--about-us {
    margin: 10px;
    padding: 20px;
  }

  .hero__heading {
    font-size: 2em;
  }
}

/* Form Section Styles - on the contact.php */
