 .service-card {
            background-color: #f8f9fe;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
            background-color: #e8f0ff;
        }
        
        .service-card h3 {
            padding: 25px 20px 15px;
            text-align: center;
            transition: color 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: #2c5364;
        }
        
        .service-description {
            padding: 0 20px 25px;
            text-align: center;
            color: #555;
            display: none;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .service-card.active .service-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Make text more readable on mobile */
        @media (max-width: 768px) {
            .marquee-item {
                font-size: 16px;
                padding: 0 30px;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
        }