.hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 10px;
}

.hero-profile {
    flex: 0 0 auto;
}

.photo-wrapper {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, #eff6ff, #bfdbfe);
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.12);
}

#photo-Anna {
    width: 340px;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.hero-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.75;
    color: #334155;
}

.hero-greeting {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 20px;
}

.highlight-quote {
    margin-top: 24px;
    padding: 18px 24px;
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-weight: 600;
    color: #1e40af;
}

.highlight-quote p {
    margin: 0;
}

@media (max-width: 940px) {
    .hero-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    #photo-Anna {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .highlight-quote {
        text-align: left;
    }
}