/* Sezione BLAIZE */
.blaize-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.blaize-text {
    flex: 1.5;
    min-width: 300px;
    text-align: justify;
}

.blaize-image {
    flex: 1;
    min-width: 300px;
}

.blaize-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.blaize-text p:last-child {
    margin-bottom: 0;
}

/* Timeline Verticale (Discipline) */
.vertical-timeline {
    position: relative;
    margin: 40px auto;
    padding-left: 60px;
    max-width: 600px;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #489AFF;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .circle {
    width: 50px;
    height: 50px;
    background-color: #489AFF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background-color 0.3s;
    cursor: default;
}

.timeline-item .circle:hover {
    transform: scale(1.1);
    background-color: #8BC0FF;
}

.timeline-item p {
    margin-left: 70px;
    padding-top: 12px;
    color: #DDDDDD;
    font-size: 1em;
    line-height: 1.4;
    transition: color 0.3s;
}

.timeline-item .circle:hover+p {
    color: #FFFFFF;
}

/* Nuova Sezione Soluzioni */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background-color: #2c2f3a;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #444;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(72, 154, 255, 0.2);
    background-color: #333644;
}

.solution-card h3 {
    font-size: 1.4em;
    color: #489AFF;
    margin-bottom: 15px;
    font-weight: normal;
}

.solution-card p {
    font-size: 1em;
    color: #DDDDDD;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
}

.cta-link {
    color: #489AFF !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.cta-link:hover {
    color: #8BC0FF !important;
}

/* Stili per le immagini nelle card */
.solution-card .image-frame {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.solution-card .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}