.scc-service-card {
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    margin: 14px 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.scc-service-header {
    width: 100%;
    border: 0;
    background: #ffffff;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.scc-service-header:hover {
    background: #f8fafc;
}

.scc-service-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex: 0 0 auto;
}

.scc-service-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.scc-service-text strong {
    color: #1f2937;
    font-size: 18px;
    line-height: 1.2;
}

.scc-service-text small {
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
}

.scc-service-arrow {
    font-size: 24px;
    color: #0f4c81;
    transition: transform .25s ease;
}

.scc-service-card.is-open .scc-service-arrow {
    transform: rotate(180deg);
}

.scc-service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #f8fafc;
}

.scc-service-content-inner {
    padding: 0 22px 22px;
    color: #334155;
    line-height: 1.6;
}

.scc-service-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0f4c81;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
}

.scc-service-button:hover {
    opacity: .9;
}

@media (max-width: 700px) {
    .scc-service-header {
        padding: 18px;
    }

    .scc-service-icon {
        width: 44px;
        height: 44px;
    }

    .scc-service-text strong {
        font-size: 16px;
    }
}
