/* ============ Page: Over Ons ============ */
.about-hero {
  background: var(--dark);
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
}

.about-container {
  max-width: 1100px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.subtitle {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--black);
}

.about-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.stat-label {
  font-size: 14px;
  color: #777;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 0px var(--green);
}

.image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--black);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
}

.about-story{
  margin-bottom: 0px;
}

.about-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../assets/banner.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.about-cta h2 { font-size: 2.5rem; margin-bottom: 15px; }
.about-cta button {
  margin-top: 30px;
  padding: 15px 40px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.about-cta button:hover { 
  background: #3da13c; 
  transform: scale(1.05); 
}

.team-section {
    padding: 60px 0; 
}

.team-header {
    text-align: center;
    margin-bottom: 40px; 
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px; 
    max-width: 1000px; 
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    background: #fcfff5;
    border-radius: 12px;
    padding: 25px 15px; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.05); 
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.team-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.team-img-wrapper {
    width: 130px; 
    height: 130px; 
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px; 
    border: 4px solid #f5fff5; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
}

.team-info {
    padding: 0;
}

.team-info h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.15rem;
    font-weight: 700;
}

.team-role {
    color: #27ae60; 
    font-weight: 600;
    font-size: 0.85rem; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block; 
}
