.hero-section {
    background: linear-gradient(135deg, #2196F3, #00BCD4); /* Gradient from blue to teal */
    color: white;
    text-align: center;
    padding: 80px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.button {
    background-color: #FF5722; /* Vibrant orange for buttons */
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #E64A19; /* Slightly darker orange on hover */
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .button {
        width: 100%;
        padding: 10px 20px;
    }

    .button-container {
        flex-direction: column;
    }
}
.hero-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-image {
    width: 128px; /* Ajustez la taille de l'image selon votre besoin */
    height: 128px;
    margin-right: 20px; /* Espace entre l'image et le texte */
}

.version {
    font-size: 0.8rem; /* Petit texte pour la version */
    margin-left: 10px; /* Espace entre "pm-random" et la version */
    color: black; /* Couleur discrète pour la version */
}
