.quick-links-container {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1400px;
    padding: 40px;
    margin: auto;
    margin-bottom: 20px;
}
        
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .section-title i {
            margin-right: 15px;
            color: #4299e1;
            font-size: 32px;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .link-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px 20px;
            background: #f8fafc;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            height: 100%;
        }
        
        .link-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e0;
            background: white;
        }
        
        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }
        
        .link-text {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            line-height: 1.4;
        }
        
        /* Specific icon colors */
        .icon-1 {
            background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
        }
        
        .icon-2 {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        }
        
        .icon-3 {
            background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
        }
        
        .icon-4 {
            background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
        }
        
        .icon-5 {
            background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
        }
        
        .icon-6 {
            background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
        }
        
        /* Responsive styles */
        @media (max-width: 900px) {
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .link-item {
                padding: 20px 15px;
            }
            
            .icon-container {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin-bottom: 15px;
            }
            
            .link-text {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .quick-links-container {
                padding: 25px 20px;
            }
        }

        @media (max-width: 400px) {
            .links-grid {
                /*grid-template-columns: 1fr;*/
            }
        }