.ssc-021c367e-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ssc-021c367e-card {
    position: sticky;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transform-origin: top center;
    will-change: transform;
}

.ssc-021c367e-card-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    transition: transform 0.3s ease-out;
}

.ssc-021c367e-content {
    text-align: center;
    max-width: 800px;
    background: rgba(255,255,255,0.8);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.ssc-021c367e-title {
    margin: 0 0 15px;
    font-size: 2.5rem;
    font-weight: 700;
}

.ssc-021c367e-desc {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ssc-021c367e-card {
        padding: 10px;
    }
    .ssc-021c367e-content {
        padding: 20px;
    }
    .ssc-021c367e-title {
        font-size: 1.8rem;
    }
}