body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #003399;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.header {
    margin-bottom: 20px;
}

.logo {
    width: 300px;
    margin-bottom: 10px;
}

h2 {
    margin: 5px 0;
    font-size: 24px;
}

p {
    margin: 5px 0;
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    background-color: #0044cc;
    padding: 10px 20px;
    margin: 10px 0;
    width: 300px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s;
}

.contact-item img {
    width: 40px;
    margin-right: 10px;
}

.contact-item .arrow {
    margin-left: auto;
}

.contact-item:hover {
    background-color: #0055ff;
}

footer {
    margin-top: 20px;
    font-size: 16px;
}
