body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
}

/* Header */
header {
    background: #000;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

header ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header ul a {
    color: white;
    text-decoration: none;
}

.active {
    border-bottom: 2px solid white;
}

/* Contact Section */
.contact {
    padding: 40px 20px;
    text-align: center;
}

form {
    max-width: 500px;
    margin: auto;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    padding: 12px 20px;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Info */
.info {
    margin-top: 30px;
}

/* Map */
.map {
    margin-top: 30px;
    padding: 50px;
    background: #ccc;
    border-radius: 5px;
    text-align: center;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}