 body {
        font-family: Calibri;
        background-color: #f0f2f5;
        color: #4b6382;
        margin: 0;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: start;
        min-height: 100vh;
        position: relative;
    }

    /* Main container for centering content */
    .container {
        text-align: center;
        max-width: 1200px;
        width: 100%;
    }

    /* Heading style */
    h1 {
        font-size: 3rem;
        color: #4b6382;
        margin-bottom: 50px;
        text-transform: uppercase;
    }

    /* Grid container for buttons */
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        justify-items:center;
    }

    /* Button styles */
    .button {
        background-color: #cdd5d8;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
        width: 100%;
        padding: 5px;
    }

    /* Hover and active effects for buttons */
    .button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    }

    .button:active {
        transform: translateY(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Link inside button */
    .button a {
        text-decoration: none;
   
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
        font-weight: bold;
       
    font-size: 22px;
    color: #4b6382;
    }

    /* Image inside button */
    .button img {
        width: auto;
        height: 15rem;
        object-fit: contain;
        margin-bottom: 10px;
    }

    /* Text inside button */
    .button p {
    /*     font-size: 30px;
        font-weight: bold;
        color: #4b6382; */
        margin: 0;
        flex-grow: 1;
    }

    /* Main menu link style */
    .main-menu-link {
        position: absolute;
        top: 50px;
        right: 20px;
        z-index: 10;
    }

    .main-menu-link img {
        width: 200px;
        height: auto;
        transition: transform 0.2s ease;
    }

    .main-menu-link a:hover img {
        transform: scale(1.05);
    }

    /* Media queries for responsiveness */
    @media (max-width: 768px) {
        h1 {
            font-size: 2.5rem;
        }
        
        .grid-container {
            grid-template-columns: 1fr;
        }
        
        .main-menu-link {
            position: relative;
            top: 0;
            right: 0;
            margin: 20px auto;
        }
    }

    /* Additional styles for the new layout */
    .page-title {
        font-size: 60px;
        color: #4b6382;
        margin: 20px 0 40px;
        font-family: 'Corbel', sans-serif;
    }
    
    .button-container {
        display: grid;
      
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
        margin-bottom: 40px;
    }
    
    .button-wrapper {
    position: relative; /* This is essential for absolute positioning to work correctly */
    margin-bottom: 10px;
      width: 100%; /* Add this */
}
    
    .button-wrapper .button {
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      /*   background: linear-gradient(145deg, #4b6382, #3a4c6a); */
        position: relative;
         width: 100%; /* Ensure this is set */
    }
    
  
    
    .button-description {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; /* Ensure same width as button */
   /*  box-sizing: border-box; /* Include padding in width calculation */ 
    background: transparent;
    /*    background: linear-gradient(145deg, #56759b, #44567a); */
    padding: 4px;
    border-radius: 0 0 12px 12px;
    z-index: 10;
    font-size: 18px;
    color: #4b6382;
    display: none;
   /*  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); */
    transition: opacity 0.3s ease;
    opacity: 0;
    font-weight: bold;
}
    
    .button-wrapper:hover .button-description {
        display: block;
        opacity: 1;
    }
    
    .seo-section {
        background-color: white;
        padding: 30px;
        border-radius: 12px;
        margin-top: 50px;
        text-align: left;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .seo-section h2 {
        color: #4b6382;
        margin-top: 0;
    }
    
    .seo-section p {
        line-height: 1.6;
        color: #555;
    }

    .button-wrapper .button,
.button-description {
    box-sizing: border-box;
}


 .btn-fixed-return {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 8px 15px;
        border: 3px solid #4b6382;
        border-radius: 5px;
        color: #4b6382;
        background-color: #fff;
        font-weight: bold;
        font-size: 18px;
        transition: background-color 0.3s, color 0.3s, transform 0.3s;
        white-space: nowrap;
        z-index: 1000;
        text-decoration: none;
    }
    
    .btn-fixed-return:hover {
        background-color: #4b6382;
        color: #fff;
        transform: scale(1.05);
    }
