/* --- ABOUT PAGE STYLES --- */

/* Hero Section */
.about-hero {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 80px 20px 100px 20px;
}
.about-hero h1 { font-size: 2.5rem; margin-bottom: 15px; color: white; }
.about-hero p { 
  font-size: 1.1rem; max-width: 700px; margin: 0 auto; 
  color: rgba(255,255,255,0.9); line-height: 1.6;
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.sub-heading { font-size: 1.8rem; margin-bottom: 20px; color: var(--text-main); }
.story-content p { margin-bottom: 20px; color: #555; font-size: 1.05rem; }

/* Founder Card */
.founder-card-wrapper {
  display: flex; justify-content: center;
}
.founder-card {
  background: #EAF7F5;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
.founder-avatar {
  width: 80px; height: 80px;
  background: var(--primary);
  color: white;
  font-size: 2rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px auto;
}
.founder-card h3 { font-size: 1.3rem; margin-bottom: 5px; }
.founder-card .role { display: block; font-size: 0.9rem; color: #666; margin-bottom: 20px; font-weight: 500; }
.founder-card .quote { 
  font-style: italic; color: #444; font-size: 0.95rem; line-height: 1.5;
  position: relative;
}

/* Values Grid */
.section-center-header { text-align: center; margin-bottom: 50px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.value-card {
  background: white; padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #eee;
}
.value-icon {
  width: 50px; height: 50px;
  background: #EAF7F5; color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px auto;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* Timeline Journey */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: #E0E0E0;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  clear: both;
}
.timeline-item.left { float: left; padding-right: 30px; text-align: right; }
.timeline-item.right { float: right; padding-left: 30px; text-align: left; margin-top: 40px; }

.timeline-dot {
  position: absolute;
  top: 0;
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 1px var(--primary);
}
.timeline-item.left .timeline-dot { right: -6px; }
.timeline-item.right .timeline-dot { left: -6px; }

.timeline-content .year {
  display: block; font-weight: 700; color: #999; margin-bottom: 5px; font-size: 0.9rem;
}
.timeline-content .year.accent-color { color: var(--accent); }
.timeline-content h4 { font-size: 1.1rem; color: var(--text-main); margin: 0; }

/* Stats Strip */
.stats-strip { padding: 40px 0; color: white; }
.stats-grid { 
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; 
}
.stat-box strong { display: block; font-size: 2rem; margin-bottom: 5px; }
.stat-box span { font-size: 0.9rem; opacity: 0.8; }

/* Visit Office */
.visit-section { padding-bottom: 100px; }
.visit-card-center {
  background: white;
  max-width: 600px; margin: 0 auto;
  text-align: center;
  /* Visual styling can be inline or basic, card style is usually implied by content structure */
}
.office-icon { 
  width: 60px; height: 60px; margin: 0 auto 20px auto; 
  display: flex; align-items: center; justify-content: center;
}
.visit-sub { margin-bottom: 30px; color: #666; }
.address-box {
  background: #F9FAFB; padding: 30px; border-radius: 12px; display: inline-block; width: 100%;
}
.address-box h4 { font-size: 1.1rem; margin-bottom: 10px; }
.divider-small { height: 1px; background: #ddd; width: 50px; margin: 15px auto; }

/* Bottom CTA */
.about-cta-section {
  text-align: center; padding: 80px 0;
}
.about-cta-section h2 { font-size: 2rem; margin-bottom: 10px; }
.about-cta-section p { margin-bottom: 30px; color: #666; }
.cta-buttons-center { display: flex; justify-content: center; gap: 20px; }

/* Clearfix for timeline */
.timeline-wrapper::after {
  content: ""; display: table; clear: both;
}

/* Responsive */
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; }
  
  .timeline-line { left: 20px; }
  .timeline-item { width: 100%; float: none; padding-left: 50px; text-align: left; margin-top: 20px; }
  .timeline-item.left, .timeline-item.right { float: none; text-align: left; padding-right: 0; }
  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: 14px; right: auto; }
}