.about-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
      padding: 50px 10%;
    }

    /* left images stacked */
    .about-images {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .about-images img {
      width: 100%;
      height: 300px; /* fixed equal height */
      object-fit: cover;
      border-radius: 8px;
    }

    /* right text */
    .about-text h2 {
      font-size: 60px;
      font-family: 'Brush Script MT', cursive;
      color: #c9a66b;
      margin: 0;
      position: relative;
      top: 10px;
    }

    .about-text h3 {
      font-size: 32px;
      font-weight: 700;
      margin: 0;
      line-height: 1.3;
    }

    .about-text p {
      margin: 20px 0;
      line-height: 1.7;
      color: #555;
    }

    .about-text .time {
      font-weight: 500;
      margin-bottom: 10px;
    }

    .about-text .time span {
      font-weight: 700;
    }

    .about-text .phone {
      font-size: 24px;
      font-weight: 700;
      color: #c9a66b;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .about-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
      }

      .about-images img {
        height: 200px;
      }

      .about-text h2 {
        font-size: 40px;
      }

      .about-text h3 {
        font-size: 24px;
      }

      .about-text .phone {
        font-size: 18px;
      }
    }
