body {
    background-color: #00355C;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.page-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 480px !important;
    height: auto !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block;
    margin: 0 auto;
    max-width: auto;
}

.container {
    width: 90%;
    max-width: 1000px;
    min-width: 300px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.link-row {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    justify-content: flex-start;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s, transform 0.3s;
}

.link-row:hover {
    background-color: #d0d0d0;
    transform: scale(1.02);
}

.link-icon {
    width: 20%; 
    max-width: 60px; 
    height: auto; 
    margin-right: 10px;
    flex-shrink: 0; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

.link-text {
    width: 80%;
    text-align: center; 
    display: flex;
    align-items: center; 
    justify-content: center; 
}


.link-text h3 {
    margin: 0 0 5px 0;
    text-align: center;
    font-size: 18px;
    width: 100%;
}

.link-text a {
    color: #0066cc;
    text-decoration: none;
}

.link-text a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 12px;
    margin-top: 20px;
    margin: 10px;
    color: #E8E8E8;
}