/* --- PAGE HERO --- */
.page-hero {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 15px; }
.page-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* --- VALUE CARDS --- */
.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-5px); }
.value-card .icon { font-size: 3rem; margin-bottom: 20px; }
.value-card h3 { font-family: var(--font-heading); margin-bottom: 15px; color: var(--primary-color); }

/* --- STATS SECTION --- */
.bg-primary { background: var(--primary-color); }
.text-white { color: var(--white); }
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.stats-grid { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.stat-label { font-size: 1.1rem; opacity: 0.9; }

/* --- TIMELINE --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-color);
}
.timeline-year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.timeline-content h3 { margin-bottom: 10px; }

/* --- TEAM --- */
.team-grid { text-align: center; }
.team-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    /* Sostituire con: background-image: url('../assets/images/team-1.jpg'); background-size: cover; */
}
.team-card h3 { font-family: var(--font-heading); margin-bottom: 5px; }
.team-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.team-card p { font-size: 0.9rem; color: var(--text-light); }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .timeline { padding-left: 20px; }
    .timeline-item::before { left: -26px; width: 12px; height: 12px; }
    .stat-number { font-size: 2.2rem; }
}