.healugee-project-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100vw;
    padding: 2rem auto;
}

.healugee-project-section-title-bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100vw;
    height: 80%;
    z-index: -10;
    background-color: #05BF8A;
}

.healugee-project-section-title-bg-image img {
    width: 800px;
    height: auto;
    object-fit: contain;

}

.healugee-project-section-text-wrapper {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    width: 100vw;
    height: 70vh;
}

.healugee-project-section-info {
    display: flex;
    position: relative;
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
}

.healugee-project-section-info-right p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #05BF8A;
}

.healugee-project-section-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
}

.healugee-project-section-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    column-gap: 2rem;
    row-gap: 2rem;
}

.healugee-project-section-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.healugee-project-section-gallery img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.healugee-project-section-contents-for-more-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 1rem;
    width: 100%;
}

.healugee-project-section-contents-for-more-information p {
    font-size: 1rem;
    line-height: 0.2rem;
    font-weight: 500;
    color: #05BF8A;
}

.healugee-project-section-contents-for-more-information a {
    font-size: 1rem;
    line-height: 0.2rem;
    font-weight: 700;
    color: #05BF8A;
}