/* ABOUT PAGE STYLES - UNITED ENTERPRISES */

.about-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 6.5rem 0;
  text-align: center;
}

.about-banner h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
}

.about-banner p {
  font-size: 1.2rem;
  color: #E2E8F0;
}

/* STORY MODULE */
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.story-img-box img {
  width: 100%;
  display: block;
}

.philosophy-banner {
  background: var(--bg-tint);
  border-left: 5px solid var(--primary-light);
  padding: 2.2rem;
  border-radius: var(--radius-sm);
  margin: 2.2rem 0;
}

/* MISSION & VISION */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* CORE VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.value-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card h4 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

/* COMMITMENTS */
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}

.commitment-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.commitment-img-box img {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .story-grid, .commitment-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-banner h1 {
    font-size: 2.6rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
