/* Page Header Shared Style */
.page-header {
  background-color: var(--charcoal-black);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--crimson-red);
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Story Section */
.story-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-text {
  flex: 1;
}

.story-text p {
  font-size: 1.1rem;
}

.story-image {
  flex: 1;
}

.story-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Founders Section Layout */
.founders-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.founders-image {
  flex: 1;
  position: sticky;
  top: 110px;
}

.founders-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

.founders-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.founder-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 40px;
}

.founder-info h3 {
  font-size: 2rem;
  color: var(--charcoal-black);
  margin-bottom: 5px;
}

.founder-info .role {
  color: var(--crimson-red);
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .story-content {
    flex-direction: column;
  }
  .founders-layout {
    flex-direction: column;
  }
  .founders-image {
    position: static;
  }
}
