.service-card {
    position: relative;
    margin-bottom: 10px;
    border-bottom:1px solid var(--line);
}

.included-toggle {
    width: 100%;
    margin-top: 8px;
    padding: 9px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;
    border: 0;

    color: rgba(255,255,255,0.55);
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;
    transition: color .3s ease;
}

.included-toggle:hover {
    color: #008cff;
}

.included-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .35s ease;
}

.included-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height .45s ease,
        opacity .3s ease,
        padding .3s ease;

    padding: 0 12px;
}

.service-card.open .included-content {
    max-height: 500px;
    opacity: 1;
    padding: 4px 12px 12px;
}

.service-card.open .included-arrow {
    transform: rotate(225deg);
}

.included-content ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    gap: 6px;
}

.included-content li {
    position: relative;
    padding-left: 17px;

    color: rgba(255,255,255,0.55);
    font-size: 11px;
    line-height: 1.45;
}

.included-content li::before {
    content: "✓";
    position: absolute;
    left: 0;

    color: #008cff;
    font-weight: 700;
}