/* Solutions Section Styles */
#solutions .grid > div {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.w-12 {
    width: 3rem;
    height: 3rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

#solutions .grid > div:hover {
    border-color: #0066CC;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Remove problematic column CSS */
#solutions p {
    text-align: justify;
    line-height: 1.5;
    hyphens: auto;
}

/* Mobile grid fixes */
@media (max-width: 640px) {
    #solutions .lg\\:hidden .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 640px) and (max-width: 1024px) {
    #solutions .lg\\:hidden .grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Remove the problematic CSS causing issues */
#solutions .grid {
    display: grid;
}

/* Ensure proper spacing on very small screens */
@media (max-width: 480px) {
    #solutions .lg\\:hidden .grid > div {
        padding: 0.5rem;
    }
    
    #solutions .lg\\:hidden h3 {
        font-size: 0.65rem;
    }
    
    #solutions .lg\\:hidden p {
        font-size: 0.6rem;
        line-height: 1.2;
    }
}