/*.section-x1 {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    overflow: hidden;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: white;*/
/*}*/

/*.section-x1 video {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    z-index: -1;*/
/*}*/

/*.section-x1::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    z-index: 0;*/
/*}*/

/*.section-x1-content {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    max-width: 1200px;*/
/*    padding: 2rem;*/
/*    text-align: center;*/
/*}*/

/*.section-x1 h2 {*/
/*    font-size: 3rem;*/
/*    margin-bottom: 3rem;*/
/*    font-weight: 700;*/
/*}*/

/*.section-x1 p {*/
/*    font-size: 1.2rem;*/
/*    line-height: 1.6;*/
/*    margin-bottom: 2rem;*/
/*}*/

/*.cards-container {*/
/*    display: flex;*/
/*    gap: 2rem;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.glass-card {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    backdrop-filter: blur(10px);*/
/*    border-radius: 20px;*/
/*    padding: 2rem 2rem 1rem 2rem;*/
/*    width: 300px;*/
/*    text-align: center;*/
/*    transition: transform 0.3s ease;*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*}*/

/*.glass-card:hover {*/
/*    transform: translateY(-10px);*/
/*}*/

/*.card-image {*/
/*    width: 108px;*/
/*    height: 108px;*/
/*    margin: 0 auto 1.5rem;*/
/*    overflow: hidden;*/
/*}*/

/*.card-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.glass-card h3 {*/
/*    font-size: 1.5rem;*/
/*    margin-bottom: 1rem;*/
/*    color: #fff;*/
/*}*/

/*.glass-card p {*/
/*    font-size: 1rem;*/
/*    line-height: 1.6;*/
/*    color: rgba(255, 255, 255, 0.9);*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .section-x1 h2 {*/
/*        font-size: 2rem;*/
/*    }*/

/*    .section-x1 p {*/
/*        font-size: 1rem;*/
/*    }*/

/*    .cards-container {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    .glass-card {*/
/*        width: 100%;*/
/*        max-width: 300px;*/
/*    }*/
/*}*/



.section-x1 {
    position: relative;
    overflow: hidden;
}

.section-x1 video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.section-x1-content {
    position: relative;
    z-index: 1;
    padding: 4rem 1rem;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

.card-image img {
    max-height: 100px;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
