/* Additional CSS for responsiveness */
@font-face {
    font-family: 'Poppins-bold';
    src: url('font/Poppins-Bold.ttf') format('woff2')

}
body{
    margin: 0px;
    background-color: white;
    font-family: 'Poppins-bold';

}
p{
font-family:'Segoe UI' 
}

main{
    background-color: white;
}
.main-content {
    min-height: 100vh; /* Set the minimum height to 100% of the viewport height */
    background-color: white;
}
header {

    border-bottom: 3px solid #002d74;
    color: #fff;
    padding:20px;
    z-index: 310;
}

main {
    text-align: center;
}

img {
    height: auto;
    margin: 0 auto;
}

form {
    max-width: 400px;
    margin: 0px auto;
    padding: 20px;
    font-family: 'Poppins-bold';
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #b11e2d;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 100%;

}


/* Style form inputs and labels */
label {
    display: block;
    margin-bottom: 10px;
    color: white;
    text-align: left;
    width: 80%;
    margin-top: 15px;
}
.grid-col{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1400px;
}
.tile-container{
    padding: 20px; text-align: center

}
.tile-header{
    font-size: 24px;
    color: #a6192e;
    font-weight: 400;
font-family:'Poppins-Bold'
}
.tile-body{
    font-size: 1em;
    margin-bottom: 1em;
    line-height: 1.5;
    max-width: 1037px;
font-family:'Segoe UI' 
}
.logo-mobile{
    display: none;
}
/* Add media queries for specific screen sizes */
@media screen and (max-width: 900px) {

footer{
    flex-direction: column;
}
    .logo-mobile{
        display: inline-block;
    }
    .logo-desktop{
        display: none;
    }
    .grid-col{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    header{
        padding: 10px 0;
    }
}
