.startcontent {
            background-color: #ffffffD9;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid #0f2547;
            margin-top: 2vh;
        }
        
        h1 {
            font-size: 2em !important;
            margin-bottom: 10px;
            color: #144681;
        }
        h4 {
            color: #144681;
        }
        
        p {
            font-size: 1em;
            margin-bottom: 20px;
            color: #144681;
        }
        
        .button-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding-bottom: 20px;
            align-items: stretch;
        }
        
        .button-box {
            background-color: #ffffffD9;
            border: 1px solid #0f2547;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            min-width: 300px;
            max-width: 350px;
            flex: 1; 
            display: flex;
            flex-direction: column;
            justify-content: space-between; 
        }
        
        .button-box h3 {
            color: #144681;
            margin: 0 0 15px 0;
            font-size: 1em;
            line-height: 1.4;
        }
        
        .button-box p {
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .Startbtn {
            width: 300px;
            height: 60px;
            padding: 10px;
            border: none;
            background-color: #144681;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            cursor: pointer;
            margin-top: auto; 
        }
        
        .Startbtn:hover {
            background-color: #0f2547;
        }
        
        .Startbtn a {
            display: block;
            text-decoration: none;
            color: white;
            font-size: 2em;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .button-wrapper {
                flex-direction: column;
                align-items: stretch; 
            }
            .button-box {
                min-width: 250px;
                max-width: 100%;
                flex: none; 
                align-self: stretch; 
            }
            .Startbtn {
                width: 100%;
            }
        }
        .min-pageheight {
            min-height: 80vh;
        }