#process-container {
    justify-content: center;      /* centers horizontally */
    align-items: flex-end;        /* bottom-aligns them for visual balance */
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: #000035;
    color: white;
    padding: 2.5% 10% 2.5% 10%;
    margin-bottom: 0;
}
.process-title {
    font-size: 2em;
    color: #ff4b4b;
    font-weight: bold;
}
#step1, #step2, #step3 {
    width: 50%; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-top: 10px; /* Space above the image */
    margin-bottom: 10px; /* Space below the image */
    
}


.steps-container {
    display: flex;
    justify-content: space-around; /* Or space-between, or center depending on desired spacing */
    align-items: flex-start; /* Aligns items to the start of the cross axis, useful if content varies in height */
}

.step-div { /* Assuming you add a class like 'step-div' to each step div */
    flex: 0 0 calc(33.33% - 50px); /* Adjust 20px for desired gap between squares */
    aspect-ratio: 1 / 1; /* Makes the div a square */
    background-color: #202A44;
    border-radius: 10px ;
    margin: 1%; /* Adds some space around each square */
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}


@media (min-width: 1450px) {
    #process-container {
        font-size: 100%;
    }
    .step-container {
        flex-direction: column; 
        align-items: center;
    }   
    #step1, #step2, #step3 {
        width: 40%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
    
}
@media (max-width: 1449px) {
    #process-container {
        font-size: 100%;
    }
    .step-container {
        flex-direction: column; 
        align-items: center;
    }   

    .step-div {
        width: 330px;
        height: 330px;
    }

    #step1, #step2, #step3 {
        width: 30%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
    
}
@media (max-width: 1350px) {
    #process-container {
        font-size: 100%;
    }
    .step-container {
        flex-direction: column; 
        align-items: center;
    }   
    .step-div {
        width: 320px;
        height: 320px;
    }


    #step1, #step2, #step3 {
        width: 30%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
    
}
@media (max-width: 1200px) {
    #process-container {
        font-size: 100%;
    }
    .step-container {
        flex-direction: column; 
        align-items: center;
    }   
    .step-div {
        width: 300px;
        height: 300px;
    }


    #step1, #step2, #step3 {
        width: 25%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
    
}
@media (max-width: 1150px) {
    #process-container {
        font-size: 100%;
    }
    .step-container {
        flex-direction: column; 
        align-items: center;
    }   
    .step-div {
        width: 300px;
        height: 300px;
    }

    #step1, #step2, #step3 {
        width: 30%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
    
}
@media (max-width: 1100px) {
    #process-container {
        font-size: 100%;
    }
    .steps-container {
        flex-direction: column; 
        align-items: center;
    }   
    .step-div {
        width: 350px;
        height: 350px;
    }
    #step1, #step2, #step3 {
        width: 40%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
}
@media (max-width: 900px) {
    #process-container {
        font-size: 100%;
    }
    .steps-container {
        flex-direction: column; 
        align-items: center;
    }   
    .step-div {
        width: 350px;
        height: 350px;
    }
    #step1, #step2, #step3 {
        width: 35%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
}
@media (max-width: 750px) {
    #process-container {
        font-size: 110%;
    }
    .steps-container {
        flex-direction: column; 
        align-items: center;
    }   
    .step-div {
        width: 360px;
        height: 360px;
    }
    #step1, #step2, #step3 {
        width: 30%; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
        margin-top: 10px; /* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }
}