.hero-content {
    padding-top: 5%;
    display: flex;
    flex-direction: column;
}

.title-first-bloc {
    font-size: 4.4em;
}

.subtitle-first-bloc {
    margin-top: -24px;
}

.subtitle-first-bloc span{
    font-size: 4em;
}

.btn-hero-content:hover {
    background-color: var(--white-green); /* Inversion des couleurs */
    color: var(--dark-green);
    transform: translateY(-3px); /* Petit saut vers le haut */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Ombre douce */
}

.btn-hero-content {
    padding: 15px 20px;
    background-color: var(--dark-green);
    border-radius: 8px;
    color: var(--white-green);
    text-decoration: none;
    transition: all 0.5s ease;
    margin-top: 24px;
    width: fit-content;
}

.cursor {
    animation: blink 1.2s infinite;
    font-size: 3.7em !important;
    vertical-align: super;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}