.his-901-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 40px 0;
}

.his-901-header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.his-901-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.his-901-header-text {
    max-width: 600px;
}

.his-901-title {
    margin: 0 0 15px 0;
    font-size: 42px;
    font-weight: 700;
    color: #094063;
}

.his-901-desc {
    margin: 0;
    font-size: 16px;
    color: #3D4C54;
    line-height: 1.6;
}

.his-901-controls {
    display: flex;
    gap: 20px;
}

.his-901-arrow {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.his-901-arrow.prev {
    background-color: #F4F4F5;
    color: #094063;
}

.his-901-arrow.next {
    background-color: #75CCD1;
    color: #FFFFFF;
}

.his-901-arrow:hover {
    transform: scale(1.05);
}

.his-901-cards-container {
    width: 100vw;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding-bottom: 20px; /* Space for shadow */
    scroll-behavior: smooth;
}

.his-901-cards-container::-webkit-scrollbar {
    display: none;
}

.his-901-cards-track {
    display: inline-flex;
    gap: 20px;
}

.his-901-card {
    min-width: 320px;
    max-width: 340px;
    background-color: #094063;
    border-radius: 40px 40px 40px 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
    flex: 0 0 auto;
    min-height: 380px;
}

.his-901-card h3 {
    color: #FFFFFF;
    font-size: 26px;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.his-901-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.his-901-icon {
    color: #75CCD1;
    font-size: 28px;
    margin-top: auto;
}

.his-901-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .his-901-title {
        font-size: 32px;
    }
    .his-901-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .his-901-card {
        min-width: 280px;
        padding: 30px;
    }
    .his-901-arrow {
        width: 60px;
        height: 60px;
    }
}
