 .processcontainer {
            max-width: 1710px;
            width: 100%;
            text-align: center;
            padding: 40px 20px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
     
        }

        .processcontainer h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #001b3d;
            animation: fadeIn 1s ease-out;
        }

        .processcontainer p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
            animation: fadeIn 1.5s ease-out;
            color: #4a90e2;
        }

        .processimage-section {
            position: relative;
            overflow: hidden;
            animation: slideIn 1s ease-out;
            margin: 0 auto;
            max-width: 1600px;
            border-radius: 8px;
        }

        .processimage-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 27, 61, 0.5);
            border-radius: 6px;
            /* Constrain the container to a reasonable height */
            max-height: 70vh;
        }

        .processimage-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
            /* Prevent the image from being too tall */
            max-height: 70vh;
            object-fit: contain;
        }

        /*.processimage-container:hover img {
            transform: scale(1.03);
        }*/

        .processcaption {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 27, 61, 0.85);
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 1rem;
            animation: fadeUp 1s ease-out;
            backdrop-filter: blur(4px);
            z-index: 10;
            max-width: 90%;
        }

        /* Additional visual improvements */
        .divider {
            height: 3px;
            width: 80px;
            background: linear-gradient(90deg, #4a90e2, #001b3d);
            margin: 0 auto 25px;
            border-radius: 3px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            from { 
                opacity: 0;
                transform: translate(-50%, 20px);
            }
            to { 
                opacity: 1;
                transform: translate(-50%, 0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .processcontainer h1 {
                font-size: 2.5rem;
            }
            
            .processcontainer p {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 900px) {
            .processimage-section {
                padding: 0 20px;
            }
            
            .processcontainer h1 {
                font-size: 2.2rem;
            }
            
            .processcontainer p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 600px) {
            .processcontainer {
                padding: 30px 15px;
            }
            
            .processcontainer h1 {
                font-size: 1.8rem;
            }
            
            .processcontainer p {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .processcaption {
                font-size: 0.9rem;
                bottom: 15px;
                padding: 8px 16px;
            }
        }

        @media (max-width: 400px) {
            .processcontainer {
                padding: 20px 10px;
            }
            
            .processcontainer h1 {
                font-size: 1.6rem;
            }
            
            .processcaption {
                font-size: 0.8rem;
                bottom: 10px;
                padding: 6px 12px;
            }
        }