/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 12 2025 | 16:14:04 */
	.carrier-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .carrier-card {
        background: #fff;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
    }
    .carrier-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }
    .carrier-card img {
        max-width: 140px;
    }
    .carrier-card-icon {
        width: 48px;
        height: 48px;
        object-fit: contain;
        margin-bottom: 12px;
    }

    /* Mobile Adjustments */
    @media (max-width: 480px) {
        .carrier-grid {
            gap: 20px;
        }

        .carrier-card {
            padding: 20px 15px;
        }

        .carrier-card h3 {
            font-size: 1rem;
        }

        .carrier-card p {
            font-size: 0.9rem;
        }

        .carrier-card-icon {
            width: 40px;
            height: 40px;
		}
	}
