/*********************************************
  ABOUT US PAGE STYLES
**********************************************/

/* HERO SECTION */
.about-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  .about-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .about-hero-overlay p {
    font-size: 1.2rem;
  }
  
  /* COMPANY HISTORY */
  .company-history {
    padding: 2rem 5%;
    background: #fff;
    text-align: left;
  }
  .company-history h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .company-history p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
  }
  
  /* OUR PROMISE SECTION - UPDATED */
.our-promise {
  padding: 3rem 5%; /* Increased padding for better spacing */
  background: var(--beige);
  text-align: center;
}

.our-promise h2 {
  margin-bottom: 1.5rem;
  color: var(--brown);
  font-size: 2rem; /* Enhanced font size for prominence */
}

.our-promise p {
  max-width: 900px;
  margin: 0 auto 2rem auto; /* Increased bottom margin */
  line-height: 1.8;
  text-align: left;
  color: var(--deep-green); /* Consistent text color */
  font-size: 1.1rem; /* Slightly larger font for readability */
}

.our-promise ul {
  max-width: 800px; /* Reduced width for consistency */
  margin: 0 auto;
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  text-align: left;
}

.our-promise ul li {
  position: relative;
  margin-bottom: 0.75rem; /* Increased spacing between items */
  padding-left: 1.5rem; /* Space for custom bullet */
  color: var(--deep-green); /* Consistent bullet and text color */
  font-size: 1rem;
  line-height: 1.6;
}

.our-promise ul li::before {
  content: "•"; /* Custom bullet */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brown);
  font-size: 1.2rem;
  line-height: 1;
}
  
  /* FOUNDER BIO */
  .founder-bio {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .founder-bio h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .founder-bio-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
    text-align: left;
  }
  .founder-bio-image-col {
    max-width: 300px;
  }
  .founder-bio-photo {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .founder-bio-text-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .founder-bio-text-col h3 {
    color: var(--brown);
    margin-bottom: 0.5rem;
  }
  .founder-bio-text-col p {
    line-height: 1.6;
  }
  
  /* OFFERINGS SECTION (HORIZONTAL ROWS) */
  .offerings-section {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .offerings-section h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .offerings-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
  }
  .offering-row {
    background: #f9f5ec;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
  }
  .offering-row h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--brown);
  }
  .offering-row p {
    line-height: 1.6;
  }
  
  /* EXPAND / DISCOVER MORE SECTION */
  .expand-section {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .expand-section h2 {
    margin-bottom: 1rem;
    color: var(--deep-green);
  }
  .expand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
  .expand-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1.2rem;
    color: var(--olive-green);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .expand-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  .expand-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .expand-card p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .expand-link {
    color: var(--deep-green);
    font-weight: 600;
    text-decoration: none;
  }
  .expand-link:hover {
    text-decoration: underline;
  }
  
  /* FINAL CTA BANNER */
  .final-cta-banner {
    background: var(--sunset-gradient);
    color: #fff;
    padding: 2rem 5%;
    text-align: center;
  }
  .final-cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .final-cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
  }
  .final-cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 768px) {
    .founder-bio-grid {
      grid-template-columns: 1fr; /* stack on mobile */
    }
    .expand-grid {
      grid-template-columns: 1fr;
    }
  }