/* Section layout */
.investmentSection {
    padding: 60px 0;
  }
  
  .investmentSection.altBg {
    background-color: #e7e3e3;
  }
  
  /* Main row container */
  .sectionRow {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* Reverse for desktop only */
  .sectionRow.reverse {
    flex-direction: row-reverse;
  }
  
  /* Image and content blocks */
  .sectionImage,
  .sectionContent {
    flex: 1;
    max-width: 50%;
    padding: 5px;
  }
  
  .sectionImage img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
  }
  
  /* Text styling */
  .sectionHeading {
    font-size: 2rem;
    margin-bottom: 15px;
    /* font-weight: bold; */
    color: #333;
    /* color: #333; */
    /* font-family: Avenir-Next-LT sans-serif; */
    font-family: "Proxima-Nova", sans-serif;;
    line-height: 2.25rem;
    text-align: center;
    
  }
  
  .sectionParagraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-family: "Proxima-Nova", sans-serif;
    
  }
  
  /* Responsive mobile adjustments */
  @media (max-width: 768px) {
    .sectionRow,
    .sectionRow.reverse {
      flex-direction: column; /* Stack image then content */
    }
  
    .sectionImage,
    .sectionContent {
      max-width: 100%;
      padding: 10px 0;
    }
  
    .sectionImage {
      order: 1;
    }
  
    .sectionContent {
      order: 2;
      text-align: center;
    }
  
    .sectionHeading {
      font-size: 1.5rem;
    }
  
    .sectionParagraph {
      font-size: 0.95rem;
    }
  }