
.performance-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}
.section-sub {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
}
.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
}
.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.performance-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}
.stat-item {
    background: #f0f4fa;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #0047AB;
    text-align: center;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .section-sub {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .stat-item {
        font-size: 12px;
        padding: 6px 14px;
    }
    .performance-stats {
        gap: 12px;
    }
}
