.hsew-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hsew-card {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    transition: transform 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    border-radius: 20px;
}

.hsew-card-1 {
    background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    z-index: 2;
    left: 0;
}

.hsew-card-2 {
    background: linear-gradient(45deg, #a1c4fd 0%, #c2e9fb 100%);
    z-index: 1;
    left: 100%;
    transform: translateX(0);
}

.hsew-card.active {
    transform: translateX(-100%);
}

.hsew-card-content {
    max-width: 500px;
    text-align: center;
}

.hsew-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hsew-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hsew-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* حالت ریسپانسیو */
@media (max-width: 768px) {
    .hsew-container {
        height: 400px;
    }
    
    .hsew-card h2 {
        font-size: 1.8rem;
    }
    
    .hsew-card p {
        font-size: 1rem;
    }
    
    .hsew-card-icon {
        font-size: 3rem;
    }
}