#hero-home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 5% 40px;
    max-width: 1300px;
    margin: 0 auto;
    height: 420px;
    box-sizing: border-box;
}

/* LEFT */
#hero-home .hero-content {
    flex: 1 1 52%;
    max-width: 580px;
}

#hero-home .hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #222;
}

#hero-home .hero-subtitle {
    font-size: 20px;
    color: #555;
    max-width: 440px;
    line-height: 1.45;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* CTA */
#hero-home .hero-btn {
    display: inline-block;
    background: #ffc14d;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 6px 16px rgba(255,193,77,0.35);
}

/* RIGHT IMAGE */
#hero-home .hero-image {
    flex: 1 1 40%;
    max-width: 450px;
    display: flex;
    justify-content: flex-start;
}

#hero-home .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateX(-20px);
    animation: float 6s ease-in-out infinite;
}