.hero-new {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    /* Increased for better presence */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to the bottom part */
    overflow: hidden;
    background-color: var(--color-bg-purple-light, #F7E6FF);
    content-visibility: auto;
}

.hero-new__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-new__image {
    width: 100%;
    height: 100%;
    /* Fill the container to avoid sharp edges */
    object-fit: cover;
    object-position: center 20%;
    /* Focus on the faces */
    aspect-ratio: 16 / 9;
}

.hero-new__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(247, 230, 255, 0) 0%,
            rgba(247, 230, 255, 0.3) 25%,
            rgba(247, 230, 255, 0.9) 50%,
            rgba(247, 230, 255, 1) 70%,
            rgba(247, 230, 255, 1) 100%);
}

.hero-new__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1rem 2rem;
    /* More bottom padding */
    width: 100%;
}

.hero-new__title {
    font-family: var(--font-serif, serif);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-dark, #1e293b);
    margin-bottom: 2rem;
}

.hero-new__highlight {
    color: var(--color-purple-primary, #9333ea);
}

.hero-new__subtitle {
    font-family: var(--font-sans, sans-serif);
    font-size: 20px;
    /* As per instruction */
    color: var(--color-text-dark, #1e293b);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.hero-new__logo {
    display: block;
    max-width: 180px;
    height: auto;
    margin: 2.5rem auto 0;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.hero-new__logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-new {
        min-height: 100dvh;
    }

    .hero-new__image {
        /* Remove height constraint to avoid lines on mobile */
        height: 100%;
    }

    .hero-new__title {
        line-height: 1.2;
    }
}