body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f9;
    color: #222;
}
header {
    background: #2c3e50;
    color: #fff;
    padding: 24px 0 12px 0;
    text-align: center;
    font-size: 2.2em;
    letter-spacing: 2px;
    font-weight: bold;
}
main {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px 24px 24px;
}
.under-construction {
    background: #ffe082;
    color: #6d4c00;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 32px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
}
section {
    margin-bottom: 32px;
}
h2 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.4em;
}
.contact-info p {
    margin: 6px 0;
}
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 16px 0 12px 0;
    font-size: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}
@media (max-width: 600px) {
    main {
        padding: 16px 4px 16px 4px;
    }
}
