*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    font-weight: 600;
}

a:hover{
    color: #02457a;
    text-decoration: underline;
}

body{
    /* max-width: 1280px; */
    margin: 0 auto;
    background-color: rgb(240, 240, 240);
    font-family: 'Poppins', sans-serif;
}

header {
    /* max-width: 1360px; */
    margin: 0 auto;
    background-color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #131313;
    box-shadow: 0px 5px 10px rgba(8, 40, 97, 0.2);
    border-radius: 10px;
}

.logo-left{
    height: 100px;
    cursor: pointer;
} 
.logo-right {
    width: 200px;
    cursor: pointer;
}

nav {
    flex-grow: 1;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    color: #001b48;
}

nav ul li {
    margin: 0 15px;
}

.main{
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
}

.main_sections{
    width: 100%;
}

.page-title{
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #001b48;
    text-decoration: underline;
}

.table {
    background-color: rgb(255, 255, 255);
    max-width: 600px;
    margin: 1rem auto;
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
}

.table-row {
    width: 100%;
    display: flex;
}

.table-header,
.table-cell {
    width: 33%;
    padding: 10px;
    border: 2px solid #ddd;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    box-shadow: 5px 5px 10px rgba(168, 168, 168, 0.2);
}

.table-header{
    background-color: #02457a;
    color: white;
}

.table-cell {
    text-align: left;
}