.gw-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.gw-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gw-swiper .swiper-slide {
    height: auto;
}

.gw-swiper .swiper-wrapper {
    align-items: stretch;
}

.gw-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f4f5f7;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.gw-card-icon {
    margin-bottom: 25px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-card-icon img {
    height: auto;
    object-fit: contain;
}

.gw-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #222222;
}

.gw-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.gw-swiper .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

.gw-swiper .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 0.6;
}

.gw-swiper .swiper-pagination-bullet-active {
    background: #333333;
    opacity: 1;
}