.process-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 10px 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 35px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 28px;
            color: #1e293b;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: #2d5044;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .process-card {
            background: white;
            border-radius: 12px;
            padding: 10px 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 4px solid transparent;
        }
        
        /* Different border colors for each card */
        .process-card:nth-child(1) {
            border-color: #3b82f6;
        }
        
        .process-card:nth-child(2) {
            border-color: #10b981;
        }
        
        .process-card:nth-child(3) {
            border-color: #f59e0b;
        }
        
        .process-card:nth-child(4) {
            border-color: #8b5cf6;
        }
        
        .process-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .card-icon {
            width: 35px;
            height: 35px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 20px;
            color: white;
            transition: all 0.4s ease;
        }
        
        /* Different icon colors for each card */
        .process-card:nth-child(1) .card-icon {
            background: #2d5044;
        }
        
        .process-card:nth-child(2) .card-icon {
            background: #2d5044;
        }
        
        .process-card:nth-child(3) .card-icon {
            background: #2d5044;
        }
        
        .process-card:nth-child(4) .card-icon {
            background: #2d5044;
        }
        
        .process-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .card-title {
            font-size: 16px;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .process-card:hover .card-title {
            color: #3b82f6;
        }
        
        .card-description {
            color: #64748b;
            font-size: 13px;
            line-height: 1.7;
        }
        
        /* Pulse animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .process-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .process-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .process-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .process-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .process-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .process-card {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .process-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .section-title h1 {
                font-size: 2rem;
            }
            
            .process-card {
                padding: 25px 20px;
            }
            
            .card-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
        }
        
        /* Footer note */
        .footer-note {
            margin-top: 50px;
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
            padding: 15px;
            border-top: 1px solid #e2e8f0;
            width: 100%;
            max-width: 800px;
        }