.transfer-wrapper {
    padding: 40px 30px;
}

.service-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    background: #E5FFDF;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: .3s ease;
    margin-bottom: 25px;
}

.service-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.service-item span {
    font-weight: 700;
    color: var(--blue-50);
}

.service-item.active {
    background: var(--green-50);
    box-shadow: 3px 3px 0px 0 #AFFF1A;
}

.service-item.active span {
    color: #fff;
}

.service-visual {
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-box {
    background: #eef4fb;
    border-radius: 28px;
    padding: 40px;
    height: 100%;
}

.service-content-box h3 {
    font-weight: 800;
    margin-bottom: 14px;
}

.service-content-box p {
    color: var(--muted);
    max-width: 90%;
}

.service-points {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}

.service-point {
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.service-point::before {
    content: "✔";
    color: var(--accent);
    font-weight: 900;
}

.service-card {
    background-color: #fff;
    border: 1px solid var(--accent);
    padding: 25px;
    border-radius: 10px;
}

.service-card h5 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--blue-50);
    margin-bottom: 18px;
}

.service-card p {
    font-size: .95rem;
}