.about {
  display: flex;
  padding: 20px;
  height: 100vh;
  align-items: center;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.about-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about-text {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
}

/* Line 1 - Social Media (display in a row) */
.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.social-media i {
  font-size: 24px;
  color: #3498db;
  transition: color 0.3s;
}

.social-media i:hover {
  color: #2c3e50;
}

/* Line 2 - Email */
.contact-item-email {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item-email i {
  font-size: 24px;
  margin-right: 10px;
  color: #3498db;
}
.contact-item-address {
  display: flex;
  align-items: center;
}

.contact-item-address i {
  font-size: 24px;
  margin-right: 10px;
  color: #3498db;
}
.contact-us {
  text-align: center;
  padding: 20px;
}
.contact-us h2 {
  margin: 10px;
}

.contact-us form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contact-us input,
.contact-us textarea {
  width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-us button {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.header {
  background-color: #ffcc00;
  color: white;
  padding: 20px;
  text-align: center;
}

.hero {
  background-image: url("../images/back-Image-1.webp");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}
.hero p {
  font-size: 1.5rem;
  margin: 10px 0 0;
}

.content {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #007bff;
  margin: 10px auto 0;
}
.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.team {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.team-member p {
  font-size: 1rem;
  margin: 0;
}
