

        /* Grid layout voor de kaarten */
        .supportcenter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

        /* De kaart (Card) */
        .supportcenter-card {
            text-decoration: none;
            background-color: #ffffff;
            border: 1px solid #e7e7e7;
            border-radius: 8px;
            display: block;
            transition: none; /* Geen hover animatie */
        }

        /* Interne wrapper voor uitlijning */
        .supportcenter-card-body {
            display: flex;
            align-items: flex-start;
            padding: 24px;
        }

        /* Icon wrapper */
        .supportcenter-icon-wrapper {
            background-color: #f0f6ff;
            color: #006ce4;
            min-width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            font-size: 18px;
        }

        /* Tekstuele content */
        .supportcenter-content-wrapper {
            flex: 1;
        }

        .supportcenter-title {
            display: block;
            margin: 0 0 6px 0;
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .supportcenter-description {
            display: block;
            margin: 0 0 12px 0;
            font-size: 14px;
            color: #474747;
            line-height: 1.5;
        }

        /* De actie link onderaan */
        .supportcenter-action-link {
            color: #006ce4;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }

        /* Subtiele onderstreping alleen op de link tekst zelf bij interactie */
        .supportcenter-action-link:hover {
            text-decoration: underline;
        }

        /* Mobile responsive aanpassingen */
        @media (max-width: 480px) {
            .supportcenter-card-body {
                padding: 16px;
            }
            .supportcenter-icon-wrapper {
                min-width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }