body {
    margin: 0;
    padding: 0;
    background-color: white !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal;
    font-size: 14px !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
    color: #091322 !important;
}

h1 {
    text-align: center;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1em;
}

h2 {
    font-size: 18px;
    margin-bottom: 30px;
}

a {
    text-decoration: none;
}

.message {
        display: block;
        padding: 15px 40px 15px 20px;
        border-radius: 5px;
        margin: 10px 0;
        position: relative;
        font-family: Arial, sans-serif;
    }

    .success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-weight: bold;
        cursor: pointer;
        font-size: 24px;
    }

section {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
section#fixed {
    position: fixed;
}
header {
    width: 100%;
    height: 80px;
    background-color: #1c538c;
    padding: 10px auto;
    
}

header #container {
    display: flex;
    justify-content: space-between;
}

.grid-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* Optional: space between items */
    justify-content: space-between; /* Optional: spacing */
}

.box-item {
    background-color: #f1f1f1;
    flex: 1 1 calc(33.333% - 10.66px); /* 3 items per row */
    box-sizing: border-box;
    padding: 40px 20px;
    background-color: #eee;
    text-align: center;
    border-radius: 12px;
    
}

.modal-open .modal {
    display: flex !important;
    align-content: center;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.box-item img {
    width: 60px;
}

.download-button {
    color: white;
    background-color: #1c538c;
    padding: 8px 20px;
    border-radius: 4px;
}

.download-button:hover {
    background-color: #f7a70c;
    color: black;
    text-decoration: none;
}

.logo {
    height: 70px;
}

#container {
    width: 1366px;
    max-width: 1366px;
    margin: 0 auto;
}

footer {
    background-color: #244577;
    padding: 10px 0px;
    text-align: center;
    width: 100%;
    color: white;
}
footer a {
    color: white;
}
footer a:hover {
    color: #FFF5;
}

@media screen and (min-width: 1500px) and (max-width: 1536px) {
    .logo {height: 60px; margin-top:10px;}
    header {height: 80px;}
    .box-item { padding: 20px !important;}
    .box-item img {height: 60px;}
}

@media screen and (max-width: 1366px) {
    header {
        padding: 0 5%;
    }
    #container {
        width:96%;
    }
    .box-item {
        width: 29%;
    }
    .grid-boxes {
        padding: 0% 0;
    }
    .box-item {
        padding: 40px 20px;
    }
    .box-item img {
        height: 40px;
    }
    h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 1366px) { 
    .box-item {
        width: 28.7%;
    }
    .box-item {
        padding: 20px 20px;
    }
}

@media screen and (max-width: 1280px) { 
    .box-item {
        width: 30%;
    }
    .box-item {
        padding: 30px 10px;
    }
    h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 1200px) { 
    .box-item {
        width: 25.9%;
    }
    .box-item {
        padding: 50px 10px;
    }
}

@media screen and (max-width: 767px) {
    #container {
        width:94%;
        margin: 0 auto;
        padding: 30px 0px;
    }
    .grid-boxes {
        flex-direction: column;
    }
    .box-item {
        width: 100%;
    }

    section#fixed {
        position: relative;
    }
    .logo {
        height: 44px;
    }
}