    .pagination a {
        display: inline-block
    }

    .card-body {
        padding: 10px 0;
    }

    .brand-link {
        display: inline-block;
        width: 100%;
        padding: 5px 0;
        position: absolute;
        font-weight: 500;
    }

    .list-group-item {
        padding: 0
    }

    .px-3 {
        padding-left: 0.7rem !important;
        padding-right: 0.7rem !important;
    }


    .company-info-sidebar {
        position: sticky;
        top: 20px;
    }

    .company-logo-large {
        background: white;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 15px var(--brand-light);
        border: 1px solid var(--brand-light);
    }

    .company-logo-img-large {
        max-width: 130px;
        max-height: 130px;
        object-fit: contain;
    }

    .company-logo-placeholder {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        background: var(--brand-light);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        font-size: 60px;
    }

    /* Info Cards */
    .info-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 15px var(--brand-light);
        border: 1px solid var(--brand-light);
        overflow: hidden;
    }

    .info-card-title {
        background: var(--brand-gradient);
        color: white;
        padding: 15px 20px;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .info-card-title i {
        font-size: 1rem;
    }

    .info-card-content {
        padding: 20px;
    }

    .info-item {
        display: flex;
        margin-bottom: 20px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        background: var(--brand-light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        font-size: 1rem;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .info-text {
        flex: 1;
    }

    .info-text strong {
        display: block;
        color: #2d3748;
        font-size: 0.85rem;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-text span,
    .info-text .contact-link {
        color: #4a5568;
        font-size: 0.95rem;
        line-height: 1.5;
    }


    @media (min-width: 1200px) {

        .h2,
        h2 {
            font-size: 1.5rem;
        }
    }

    /* ===== DESKTOP FIX (VERY IMPORTANT) ===== */

    /* Allow left side to shrink */
    .generic-row>div:first-child {
        flex: 1;
        min-width: 0;
    }

    /* Allow text to wrap properly */
    .generic-row a {
        display: block;
        white-space: normal;
        word-break: break-word;
    }

    /* Prevent badge from shrinking */
    .generic-row .brand-badge {
        flex-shrink: 0;
        margin-left: 10px;
    }


    /* ===== MOBILE FIX ===== */

    @media (max-width: 479px) {
        .list-group-item {
            padding: 0;
        }

        .generic-row {
            flex-direction: column !important;
            align-items: flex-start !important;
        }

        .generic-row>div:first-child {
            width: 100%;
            margin-bottom: 6px;
        }

        .generic-row .brand-badge {
            align-self: flex-start;
            margin-top: 0;
            margin-left: 0;
        }

        .brand-link {
            position: relative;
            padding: 0;
        }
    }