body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #fff8e1;
    padding: 1em 0;
    border-bottom: 1px solid #ccc;
}
header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #e65100;
    font-weight: bold;
}
.logo {
    max-height: 55px;
}
main {
    padding: 2em 0;
    background-color: #ffffff;
    text-align: center;
}
.contact-section h1 {
    font-size: 2.2em;
    margin-bottom: 12px;
}
.contact-list {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
}
.contact-list li {
    margin: 12px 0;
}
.contact-list a {
    text-decoration: none;
    color: #bf360c;
}
footer {
    background-color: #fff8e1;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
    border-top: 1px solid #ccc;
}