/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* Page Hero Banner */
.page-hero {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-light);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
}

/* Our Story Section */
.story-section {
  padding: 80px 0 40px;
}

.story-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.story-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.story-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.story-full-text {
  max-width: 900px;
  margin: 0 auto;
}

.story-full-text p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-section {
  padding: 60px 0 80px;
}

.mission-header {
  margin-bottom: 40px;
}

.mission-header .section-label {
  margin-bottom: 8px;
}

.mission-header .section-title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.mission-tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  user-select: none;
  transition: color 0.2s;
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 4px 0 24px 24px;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-body blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy);
  border-left: none;
  margin-bottom: 16px;
}

.accordion-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.accordion-body ul {
  list-style: disc;
  padding-left: 20px;
}

.accordion-body ul li {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.7;
}

/* What We Offer Section */
.offer-section {
  padding: 80px 0;
  background: var(--white);
}

.offer-header {
  text-align: center;
  margin-bottom: 56px;
}

.offer-header .section-label {
  margin-bottom: 8px;
}

.offer-header .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.offer-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.offer-card .read-more {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.offer-card .read-more:hover {
  gap: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .story-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .story-content h2 {
    font-size: 1.6rem;
  }
}
