* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #34495e;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
}

header a {
    display: flex;
    align-items: center;
}

.contact-box {
    background-color: #ecf0f1;
    padding: 30px;
    margin: 40px auto;
    border-radius: 5px;
    max-width: 600px;
    text-align: center;
}

.contact-box h2 {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.contact-box p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
}

.email-link {
    color: #3498db;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
    color: #2980b9;
}

header h1 {
    font-size: 2em;
    margin: 0;
}
