.sc-25852-container {
    position: relative;
    width: 100%;
}

.sc-25852-cards-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between cards when scrolling normally */
}

.sc-25852-card {
    position: sticky;
    top: 100px; /* Adjust sticky top position */
    width: 100%;
    min-height: 300px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: top center;
}

.sc-25852-card-inner {
    text-align: center;
    max-width: 600px;
}

.sc-25852-card-title {
    margin-bottom: 20px;
    font-size: 2em;
}

.sc-25852-card-content {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Add staggered scale effect via simple CSS */
.sc-25852-card:nth-child(1) { z-index: 1; }
.sc-25852-card:nth-child(2) { z-index: 2; top: 120px; }
.sc-25852-card:nth-child(3) { z-index: 3; top: 140px; }
.sc-25852-card:nth-child(4) { z-index: 4; top: 160px; }
.sc-25852-card:nth-child(5) { z-index: 5; top: 180px; }
