        .about-section {
            background: linear-gradient(135deg, #f0f0f0 0%, #f7f7f7 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            color: #2d3748;
            font-weight: 800;
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .section-title .text-primary {
            background: linear-gradient(135deg, #7c0000, #640202);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #550000, #720505);
            border-radius: 2px;
        }
        
        .lead {
            color: #718096;
            line-height: 1.8;
            font-size: 1.3rem;
        }
        
        .service-card {
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            background: white;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            border-color: #8c68d0;
        }
        
        .service-icon {
            color: #ac0202;
            font-size: 1.5rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .fallback-image {
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            height: 500px;
        }
        
        .fallback-image i {
            font-size: 4rem;
            color: #adb5bd;
        }
        
        @media (max-width: 768px) {
            .about-img, .fallback-image {
                height: 350px;
                margin-bottom: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .ps-lg-5 {
                padding-left: 0 !important;
            }
        }