/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0066B3 0%, #1d4ed8 100%);
    color: white;
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero .lead {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-image img {
    border-radius: 2px;
    box-shadow: var(--shadow);
    width: 100%;
}

.stats {
    background-color: var(--gray-light);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-text h2 {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Video Section */
.video-section {
    background-color: var(--gray-light);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-container h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .video-container h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

/* Adatta immagine 20 anni all'altezza del testo */
.content-grid .content-image.align-height {
    display: flex;
    align-items: stretch;
}

.content-grid .content-image.align-height img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
/* Adatta immagine 20 anni all'altezza del testo */
.content-grid .content-image.align-height img {
    max-height: 450px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}