.about-section {
  padding: 60px 20px;
  background: #fafafa;
  line-height: 1.6;
}

.about-section h2 {
  /*font-size: 26px;*/
  margin-bottom: 15px;
}

.about-section p {
  margin-bottom: 15px;
  /*font-size: 16px;*/
}

/* Vision & Mission cards */
.vision-mission {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.vision-mission .card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.vision-mission .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

/* About story grid */
.story-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.story-grid .text {
  flex: 1;
}
.story-grid .image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Today section */
.about-today {
  margin-top: 40px;
  background: #fff;
  padding: 30px;
}


.site-logo img {
    max-height: clamp(50px, 10vw, 90px) !important;
    width: auto !important; /* maintain aspect ratio */
}