/* about.css — Page-specific styles for about.html */

/* ========================
   About Page Section
======================== */
.about-page .about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 0;
  }

  .about-page .container {
    background: var(--color-hero-gradient);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem;
  }
  
  
  .about-page .about-image {
    flex: 1 1 300px;
    max-width: 400px;
  }
  
  .about-page .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .about-page .about-text {
    flex: 1 1 400px;
    text-align: left;
  }
  
  .about-page .about-text h2 h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-page .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .about-page .about-text .cta-button {
    margin-top: 1rem;
  }
  
  /* ========================
     Social Feeds
  ======================== */
  .fb-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
  }
  
  .fb-page > span,
  .fb-page iframe {
    width: 100% !important;
    max-width: 500px;
    height: 500px !important;
    border: none !important;
  }
  
  
  /* ========================
     Responsive
  ======================== */
  @media (max-width: 768px) {
    .about-page .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-page .about-text {
      text-align: center;
    }
  
    .about-page .about-text .cta-button {
      margin: 1rem auto 0 auto;
    }
  }
  