.EOFY-CUS-banner-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        
/* === INTRO SECTION LAYOUT=== */
.EOFY-CUS-section-profile {
  width: 100%;
  background-color: white;
  padding: 80px 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}


.EOFY-CUS-section-profile-text {
  flex: 1 1 300px;
  max-width: 600px;
}


.EOFY-CUS-section-profile-title {
  font-size: 3rem;
  margin-bottom: 2.2rem;  
  color: #202124;
  text-align: left;
  font-weight: 800;
  line-height: 1.25;
}


.EOFY-CUS-section-profile-desc {
  font-size: 1.8rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 2.4rem;
}


.EOFY-CUS-section-profile-text a {
  display: inline-block;
  padding: 1em 2.5em;
  background-color: #fff;
  border: 3px solid #202124;
  color: #202124;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 900;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}

.EOFY-CUS-section-profile-text a:hover {
  background-color: #202124;
  color: #fff;
}


.EOFY-CUS-section-profile-image-box {
  flex: 1 1 300px;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.EOFY-CUS-section-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .EOFY-CUS-section-profile {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .EOFY-CUS-section-profile-title {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    text-align: center;
  }

  .EOFY-CUS-section-profile-desc {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
  }

  .EOFY-CUS-section-profile-text a {
    font-size: 1.15rem;
    padding: 0.9em 2.2em;
    margin: 0 auto 2rem;
  }

  .EOFY-CUS-section-profile-image-box {
    max-width: 90%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
}


