.aboutContainer {
  padding-bottom: 4rem;
}

/* Common */
.tagline {
  color: var(--accent-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

/* Original Mission & Vision Section */
.contentGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.textContent h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.textContent p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.imagePlaceholder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.placeholderBox {
  width: 100%;
  height: 400px;
  background-color: var(--border-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* About Two Section */
.aboutTwo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  align-items: center;
}

.aboutImagePlaceholder {
  height: 500px;
  background-color: var(--border-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: bold;
}

.aboutText {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.aboutList {
  list-style: none;
}

.aboutList li {
  font-size: 1.125rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* CTA Section */
.ctaSection {
  display: flex;
  position: relative;
  min-height: 360px;
  background-color: var(--bg-color);
  margin: 4rem 0;
}

.ctaImageWrapper {
  width: 60%;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
}

.ctaContentWrapper {
  width: 50%;
  margin-left: -10%;
  background-color: var(--primary-navy);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem 3rem 12%;
  color: white;
  z-index: 1;
}

.ctaContentInner {
  max-width: 500px;
}

.ctaList {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.ctaList li {
  color: white;
}

.ctaTitle {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.ctaActionRow {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primaryButton {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  border-radius: 0.25rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.primaryButton:hover {
  transform: translateY(-2px);
}

.ctaArrow {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctaArrow svg {
  width: 100%;
  height: auto;
}

/* Stats Section */
.statsSection {
  background-color: var(--primary-navy);
  color: white;
  padding: 4rem 0;
}

[data-theme='dark'] .statsSection {
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.statItem h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.statItem p {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Team Section */
.teamSection {
  padding: 6rem 0;
}

.teamGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.teamCard {
  background-color: var(--bg-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform var(--transition-fast);
}

.teamCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.teamImage {
  height: 300px;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.teamInfo {
  padding: 2rem;
}

.teamInfo h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.teamInfo p {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.25rem;
}

.socials span {
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.socials span:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .contentGrid, .aboutTwo {
    grid-template-columns: 1fr;
  }
  
  .ctaSection {
    flex-direction: column;
  }
  .ctaImageWrapper {
    width: 100%;
    height: 300px;
  }
  .ctaContentWrapper {
    width: 100%;
    margin-left: 0;
    clip-path: none;
    padding: 3rem;
  }
}