    /* Global Styles */
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        background-color: #f5f7fa;
        color: #333;
        display: flex;
        min-height: 100vh;
        flex-direction: column;
        box-sizing: border-box;
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

     /* Grid Button Styles */
    .button-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Creates 4 columns */
        gap: 1rem;
        margin-top: 2rem;
        max-width: 78%;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;  /* Adds padding on the left */
        padding-right: 20px; /* Adds padding on the right */
    }

    .employmentGrid {
        grid-template-columns: repeat(3, 1fr); /* Creates 4 columns */
    }

    .homePageServices {
        grid-template-columns: repeat(2, 1fr); /* Creates 4 columns */
        max-width: none !important;
        padding-left:0px !important;
        margin-top:0px !important;
    }

    .homePageServices:hover, .homePageServices div:hover{
        transform:none !important;
    }

    .homePageServices div{
        max-width: 97% !important;
        text-align: left;
        padding-left: 10px;
        height: auto;
    }

    
    .grid-button {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;
        background-color: #ffffff;
        color: rgb(0, 0, 0);
        text-decoration: none;
        border-radius: 25px;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid #ddd;
        max-width: 290px;
        width: 100%;
        height: 290px;
        padding: 15px;
        justify-self: center;
    }

    #certifications .grid-button {
        width: 90%;
        height: 210px;
    }

    #certifications p {
        display: none;
    }

    #certifications a {
        color: rgba(0, 32, 72, 0.9);
    }

    .grid-button h3 {
        margin: 0;
        font-size: 1.2rem;
    }

    .grid-button:hover {
        transform: scale(1.05);
    }

    .grid-button h5 {
        font-size: 0.9rem;
        margin-top: auto;
    }

    .grid-button hr {
        width: 80%;
        margin: 10px auto;
    }

    .grid-button img {
        height: 160px !important;
        width: auto;
    }

    /* Custom Course Form Styles */
    .course-form {
        margin-top: 2rem;
        padding: 20px;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 8px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
     

    /* Media Queries for Mobile Responsiveness */

    @media (max-width: 1025px) {
        
        .button-grid{
            margin-left: 0px;
            padding-left: 70px !important;
            max-width: 980px !important;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px !important;
        }
       
        .employmentGrid {
            grid-template-columns: repeat(2, 1fr); /* Creates 4 columns */
        }

        .homePageServices {
            grid-template-columns: repeat(1, 1fr); /* Creates 4 columns */
            padding-left:0px !important;
        }

        .homePageServices div{
            max-width: 97% !important;
            text-align: left;
            padding-left: 10px;
            height: auto;
        }
        
        

    }
    

    @media (max-width: 768px) {



        .grid-button {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
            background-color: #ffffff;
            color: rgb(0, 0, 0);
            text-decoration: none;
            border-radius: 25px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
            max-width: 290px;
            width: 100%;
            height: 290px;
            padding: 15px;
            justify-self: center;
        }

        .employmentGrid {
            grid-template-columns: repeat(2, 1fr); /* Creates 4 columns */
        }

        .homePageServices {
            grid-template-columns: repeat(1, 1fr); /* Creates 4 columns */
            padding-left:0px !important;
        }

        .homePageServices div{
            max-width: 97% !important;
            text-align: left;
            padding-left: 10px;
            height: auto;
        }

        .button-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
            max-width: 100%;
            padding-left: 10px;
            padding-right: 10px;
            margin-left: 0px;
        }

        

        .course-form {
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        .grid-button img {
            height: 140px;
        }
    }

    @media (max-width: 480px) {
        .grid-button {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
            background-color: #ffffff;
            color: rgb(0, 0, 0);
            text-decoration: none;
            border-radius: 25px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
            max-width: 300px;
            padding: 15px;
            justify-self: center;
        }

        .button-grid {
            grid-template-columns: 1fr; /* 1 column on mobile */
            gap: 1rem;
            padding-left: 5px;
            padding-right: 5px;
            margin-left: 25px;
        }

        .homePageServices {
            grid-template-columns: repeat(1, 1fr); /* Creates 4 columns */
            padding-left:0px !important;
        }

        .homePageServices div{
            max-width: 97% !important;
            text-align: left;
            padding-left: 10px;
            height: auto;
        }


        .course-form {
            max-width: 100%;
        }

        .grid-button img {
            height: 120px;
        }
    }

    
   