/* About Page Styles */

.about-main {
  padding: 0;
  flex: 1;
}

/* Our Story Section */
#our-story {
  background: linear-gradient(135deg, #2a071f 0%, #4a1a3a 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

#our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/african_kids.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

#our-story .index-section {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
}

#our-story h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #f1b8d0;
  margin: 0 auto 2rem auto;
  text-align: center;
  max-width: 900px;
  line-height: 1.2;
}

#our-story .copy {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.7;
  font-size: 1.1rem;
  opacity: 0.95;
}

#our-story .copy p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
}

#our-story .copy p:last-child {
  margin-bottom: 0;
}

#our-story .copy strong {
  color: #f1b8d0;
  font-weight: 600;
  font-size: 1.1em;
}

/* Liberia History Section */
#liberia-history {
  background: #1a0515;
  padding: 4rem 2rem;
  position: relative;
}

#liberia-history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(241, 184, 208, 0.05) 0%, rgba(212, 165, 184, 0.05) 100%);
  z-index: 1;
}

#liberia-history .index-section {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
}

#liberia-history h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #f1b8d0;
  margin: 0 auto 2rem auto;
  text-align: center;
  max-width: 900px;
  line-height: 1.2;
}

#liberia-history .copy {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.7;
  font-size: 1.1rem;
  opacity: 0.95;
}

#liberia-history .copy p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
}

#liberia-history .copy p:last-child {
  margin-bottom: 0;
}

/* Enhanced Typography */
.copy p {
  position: relative;
  padding-left: 1.5rem;
}

.copy p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 3px;
  height: 1.5rem;
  background: linear-gradient(135deg, #f1b8d0, #d4a5b8);
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  #our-story h1 {
    font-size: 2.5rem;
  }
  
  #liberia-history h2 {
    font-size: 2rem;
  }
  
  #our-story .copy,
  #liberia-history .copy {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #our-story,
  #liberia-history {
    padding: 3rem 1rem;
  }
  
  #our-story h1 {
    font-size: 2rem;
  }
  
  #liberia-history h2 {
    font-size: 1.75rem;
  }
  
  #our-story .copy,
  #liberia-history .copy {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .copy p {
    padding-left: 1rem;
  }
  
  .copy p::before {
    width: 2px;
    height: 1rem;
    top: 0.25rem;
  }
}

@media (max-width: 480px) {
  #our-story,
  #liberia-history {
    padding: 2rem 1rem;
  }
  
  #our-story h1 {
    font-size: 1.75rem;
  }
  
  #liberia-history h2 {
    font-size: 1.5rem;
  }
  
  #our-story .copy,
  #liberia-history .copy {
    font-size: 0.9rem;
  }
  
  .copy p {
    padding-left: 0.75rem;
  }
  
  .copy p::before {
    width: 2px;
    height: 0.75rem;
  }
}