/* Sezione informativa dopo il form */
.info-section {
    background-color: #0b132b; /* Blu notte */
    color: #d4af37; /* Oro */
    padding: 80px 0;
    font-family: 'Poppins', sans-serif; /* Mantiene lo stile coerente */
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-text {
    flex: 1 1 500px;
    text-align: center;
}

    .info-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #d4af37; /* oro */
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .info-text p {
        color: #eaeaea;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.info-image {
    flex: 1 1 400px;
    text-align: center;
}

    .info-image img {
        max-width: 100%;
        border-radius: 10px;
        transition: transform 0.5s ease;
    }

        .info-image img:hover {
            transform: scale(1.02);
        }

/* Effetto fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
