        .global-rectangular-area {
            position: relative;
            height: 500px;
            overflow: hidden;
            background-color: #004c97;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-bottom: 60px;
            font-family: 'Roboto';
        }

        .global-mask-group {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        /* Base image styling */
        .global-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Individual opacities */
        .global-image1 {
            opacity: 0.15;
            z-index: 1;
        }

        .global-image2 {
            opacity: 0.25;
            z-index: 2;
        }

        /* Content container */
        .global-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding:0 90px;
            gap: 20px;
            width: 90%;
    max-width: 1440px;
            margin-top: 100px;
            top:30px;
            

        }

        /* Heading style - Mobile First */
        .global-heading {
            color: #fff !important;
            font-size: clamp(28px, 8vw, 64px);
            line-height: 1.2;
            font-weight: bold;
            letter-spacing: 0.01em;
            word-wrap: break-word;
            hyphens: none;
            margin: 0;
            z-index: 9999;
        }

        /* Paragraph styling */
        .global-paragraph {
            color: #fff;
            font-size: clamp(16px, 3vw, 20px);
            line-height: 1.4;
            margin: 0;
            margin-block-start: 0 !important;
            margin-block-end: 0 !important;
            hyphens: none;
        }

        .global-content p {
            margin-block-start: 0 !important;
            margin-block-end: 0 !important;
        }
        /* Global content container */

         .Global-page-button-container{
            display: flex;
   
    gap: 20px;
}
        /* Button styling */
        .Global-page-button {
            display: inline-flex;
            padding: 10px 26px;
            background: #ffffff;
            color: #004C97;
            text-decoration: none;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease-in-out !important;
            font-size: 14px;
            justify-content: center;
            align-items: center;
            line-height: 1.5;
            border: none;
            cursor: pointer;
        }

        .Global-page-button svg {
            margin-left: 7px;
        }

        .Global-page-button:hover {
            background: #004C97;
            color: #ffffff !important;
            transform: scale(1.05) !important;
        }

        .Global-page-button1 {
            display: inline-flex;
            padding: 10px 26px;
            background: #ffffff;
            color: #004C97;
            text-decoration: none;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease-in-out !important;
            font-size: 14px;
            justify-content: center;
            align-items: center;
            line-height: 1.5;
            border: none;
            cursor: pointer;
        }

        .Global-page-button1 svg {
            margin-left: 7px;
        }

        .Global-page-button1:hover {
            background: #004C97;
            color: #ffffff !important;
            transform: scale(1.05) !important;
        }
        /* Extra Small Devices (phones, 320px and up) */
        @media screen and (max-width: 480px) {
               .global-rectangular-area {
    height: auto !important;
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .global-heading {
    font-size: 26px;
    line-height: 1.4;
    margin-top: 16px;
  }

  .global-content {
padding:0;
    gap: 12px;
    text-align: center;
  }

  .criticalstart-logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 12px;
  }
.Global-page-button-container{
flex-direction: column;
}
        }

        /* Small Devices (landscape phones, 481px and up) */
        @media screen and (min-width: 481px) and (max-width: 768px) {
            .global-rectangular-area {
                height: 300px;
            }
            
            .global-content {
                gap: 18px;
                max-width: 95%;
            }
            
            .global-heading {
                font-size: 26px;
            }
        }

        /* Medium Devices (tablets, 769px and up) */
        @media screen and (min-width: 769px) and (max-width: 1024px) {
            .global-rectangular-area {
                height: 450px;
            }
            
            .global-heading {
                font-size: clamp(40px, 5vw, 56px);
            }
        }

        /* Large Devices (desktops, 1025px and up) */
        @media screen and (min-width: 1025px) {
            .global-rectangular-area {
                height: 500px;
            }
            
            .global-content {
                /* max-width: 90%; */
                gap: 15px;
            }
            
            .global-heading {
                font-size: 64px;
            }
        }

        /* Ultra-wide screens */
        @media screen and (min-width: 1400px) {
            .global-heading {
                font-size: 64px;
            }
        }

        /* Landscape orientation adjustments for mobile */
        @media screen and (max-height: 400px) and (orientation: landscape) and (max-width: 768px) {
            .global-rectangular-area {
                height: 280px;
            }
            
            .global-content {
                gap: 10px;
            }
            
            .global-heading {
                font-size: 26px;
            }

            .global-paragraph {
                font-size: clamp(12px, 3vw, 16px);
            }
        }

        /* High DPI displays */
        @media screen and (-webkit-min-device-pixel-ratio: 2), 
               screen and (min-resolution: 192dpi) {
            .global-image {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Fallback for very old browsers */
        .no-flexbox .global-rectangular-area {
            display: table-cell;
            vertical-align: middle;
        }

        .no-flexbox .global-content {
            display: inline-block;
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            .global-rectangular-area {
                transition: none;
            }
            
            .Global-page-button {
                transition: none !important;
            }
            
            .Global-page-button:hover {
                transform: none !important;
            }
        }
