body {
    font-family: Arial, sans-serif;
    margin: 5vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
    margin-top: 0px;
    margin-left: 0px;
    align-items: flex-start;
    
}

.logo {
    margin-top: 30px;
    margin-left: 5vw;
}

.accordion {
    width: 1400px;
    margin-bottom: 20px;
}

.accordion-item {
    border: 0px solid #ccc;
    border-radius: 15px;
    margin-bottom: 5px;
}

.accordion-header {
    padding: 1px;
    cursor: pointer;
    margin-left: 70px;
    -webkit-text-fill-color: #003359;
    font-size: 12px;
    height: 50px;
    line-height: 50px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.accordion-content {
    display: none;
    padding: 10px;
    font-size: 12px;
    margin-left: 70px;
}

.tile {
    position: relative;
    width: 300px;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    color: #333;
    display: inline-block;
    border-radius: 10px;
    margin-right: 10px;
    box-sizing: border-box;
}


.tile:hover {
    background-color: #f5f5f5;
}

.accordion-header-content {
    flex: 1; /* Take up remaining space */
    display: flex;
    align-items: center;
    margin: 0;
}

.tile-description {
    height: 60px; /* Set a fixed height for the description */
    padding: 10px;
    font-size: 14px;
    color: #555;
    background-color: #f0f0f0;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;  
}
.tile-title {
    height: 25px; /* Set a fixed height for the title */
    margin-top: 0px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    -webkit-text-fill-color: #003359;
}

footer {
    width: 100%;
    color: 003359;
    margin-top: auto;
    margin-left: 70px;
}
.new-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #ff0000;
    color: #ffffff;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 15px;
}