.cute-button:hover::before {
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 1;
    transform: translateX(3px);
}.who-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 40px;
    margin: 40px auto;
    max-width: 800px;
    width: 100%;
}

.who-title {
    margin-bottom: 25px;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.who-body {
    font-size: 1.8rem;
    line-height: 1.7;
    margin: 0 0 30px 0;
    font-weight: 400;
    max-width: none;
}

.who-content-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cute-button {
    background: transparent;
    border: 2px solid #2E86C1;
    border-radius: 25px;
    padding: 12px 24px 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #2E86C1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cute-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 0px solid #2E86C1;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
}

.cute-button:hover {
    transform: translateY(-2px) scale(1.05);
    background: #2E86C1;
    color: white;
}

.cute-button:active {
    transform: translateY(0) scale(1.02);
    transition: all 0.1s ease;
}

.cute-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(46, 134, 193, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.cute-button:hover::after {
    width: 300px;
    height: 300px;
}


/* Make images a grid */
.who-images {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 300px 300px;    /* Fixed height for rows instead of 1fr */
  gap: 20px;                          /* Increased gap between images */
  width: 100%;                        
  margin: 20px 0;                     /* Increased vertical margin around the entire grid */
  padding: 0;                         
  max-height: 460px;                  /* Limit total height (2 * 200px + gap) */
}

.who-images img {
  width: 100%;
  height: 100%;                       /* Fill the grid cell completely */
  object-fit: cover;
  display: block;
}

/* Position images in the grid */
.left-top {
  grid-column: 1;
  grid-row: 1;
}

.left-bottom {
  grid-column: 1;
  grid-row: 2;
}

.right {
  grid-column: 2;
  grid-row: 1 / span 2; /* spans both rows */
}