.about {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px 120px;
  }
  
  .about-title {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .about-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: rgba(246, 242, 228, 0.05);
    border: 1px solid var(--cream);
    border-radius: 20px;
    margin-top: 60px;
    margin-bottom: 80px;
  }

  /*.about-image-1 {
    /* background-image: url('about-image-1.png'); */
  
  .about-image-2 {
     background-image: url('about-image-1.png');
  }
  
  .about-section {
    margin-bottom: 80px;
  }
  
  .about-greeting {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 32px;
  }
  
  .about-subheading {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
  }
  
  .about-section p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(246, 242, 228, 0.85);
    margin-bottom: 24px;
  }
  
  .about-section p:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .about {
      padding: 100px 20px 80px;
    }
  
    .about-title {
      font-size: 32px;
      margin-bottom: 40px;
    }
  
    .about-image {
      margin-bottom: 60px;
      border-radius: 12px;
    }
  
    .about-greeting {
      font-size: 32px;
    }
  
    .about-subheading {
      font-size: 24px;
    }
  
    .about-section {
      margin-bottom: 60px;
    }
  }