.about-section {
  margin-bottom: 40px;
  padding: 20px 0;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.about-wrapper {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%; /* reduced from 100% to 70% */
  max-width: 500px; /* optional limit for large screens */
  height: auto; /* keeps image proportion */
  border-radius: 8px;
  display: block;
  margin: 0 auto; /* centers the image */
}

.about-content {
  margin-top: 20px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #222;
}

.about-text {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.about-text.highlight {
  font-weight: 500;
  color: #333;
}

.about-button {
  display: inline-block;
  padding: 10px 25px;
  background: #ff5e14;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-button:hover {
  background: #e64c0c;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.5rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}

.team_card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.team_card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.team_img {
  position: relative;
  overflow: hidden;
}

.team_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.team_card:hover .team_img img {
  transform: scale(1.07);
  filter: brightness(0.9);
}

.team_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  padding: 16px 10px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.team_name {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.team_position {
  font-size: 0.95rem;
  color: #666;
  display: block;
  margin-top: 3px;
}

.founder_note_area {
  margin: 40px 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .team_name {
    font-size: 1rem;
  }
  .team_position {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .team_card {
    border-radius: 6px;
  }
  .team_overlay {
    padding: 12px 8px;
  }
  .team_name {
    font-size: 0.95rem;
  }
  .team_position {
    font-size: 0.85rem;
  }
}
