footer {
  padding: 10px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.about-section section {
  margin: auto;
  padding: 20px;
}

.about-section h1 {
  font-size: 2.5rem;
  margin: 10px 0 10px;
  font-weight: bold;
}

.about-section h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: #888;
}

.about-section .image-container {
  position: relative;
  margin-top: 10px;
}

.about-section .image-container img {
  width: 100%;
  /* height: 70vh; */
  object-fit: cover;
}

.about-section .share-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #444;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.about-section .stats {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.about-section .stats div {
  flex: 1 1 22%;
  text-align: center;
}

.about-section .stats h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-section .about-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #444;
  max-width: 1000px;
  margin: auto;
}

.about-section .specialization-section {
  background: #fafafa;
  text-align: center;
  padding: 60px 40px;
}

.about-section .specializations {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-section .specialization-item {
  width: 120px;
  text-align: center;
}

.about-section .specialization-item img {
  /* width: 60px; */
  margin-bottom: 10px;
}

.about-section .specialization-item p {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .about-section .about-text {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #444;
    max-width: 1000px;
    margin: auto;
  }
  .about-title, .about-content {
    flex: 1 1 100%;
  }

  .about-title h2 {
    font-size: 24px;
    text-align: center;
  }
  .about-section .stats {
    /* display: flex;
    justify-content: space-between; */
    margin: 20px 0;
    /* flex-wrap: wrap; */
    gap: 10px;
  }
  .about-section .stats h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .about-section .specialization-item p {
    margin-top: 10px;
  }
  .about-section .specializations {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
  }
  .about-section .about-title h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .about-section .about-content p {
    font-size: 15px;
  }
}