
        /* --- CSS STYLES --- */
        .trust-section {
            background-color: #050505; /* Deep Black */
            padding: 40px 20px;
            border-bottom: 1px solid #1f1f1f;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .trust-container {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(1, 1fr); /* Mobile: 1 column stack */
            gap: 30px;
        }

        /* Tablet: 2 columns */
        @media (min-width: 640px) {
            .trust-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop: 4 columns */
        @media (min-width: 1024px) {
            .trust-container {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        .trust-item {
            display: flex;
            flex-direction: row; /* Icon Left, Text Right */
            align-items: flex-start; /* Align to top */
            text-align: left;
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .trust-item:hover {
            transform: translateY(-3px);
        }

        /* Icon Styling */
        .icon-box {
            flex-shrink: 0; /* Prevent icon from squishing */
            width: 50px;
            height: 50px;
            background: #111;
            border-radius: 12px; /* Soft square looks cleaner than circle here */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px; /* Space between icon and text */
            border: 1px solid #333;
            transition: all 0.3s ease;
        }

        .trust-item:hover .icon-box {
            border-color: #e11d48; 
            background: #1a0508; /* Very dark red tint */
        }

        .trust-icon {
            width: 24px;
            height: 24px;
            color: #fb7185; /* Rose color */
        }

        /* Text Container */
        .text-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 2px; /* Slight adjustment to align with icon center visually */
        }

        .trust-title {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .trust-desc {
            color: #9ca3af; /* Grey text */
            font-size: 13px;
            line-height: 1.4;
            margin: 0;
        }

    