body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #ffcc00;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

h1 {
    color: #d9534f;
}

.highlight {
    color: #ff6600;
}

p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    background: #d9534f;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #c9302c;
}

.map {
    margin-top: 20px;
}

iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}

.social-links {
    margin-top: 20px;
}

footer {
    margin-top: 20px;
    font-size: 14px;
}

.dark-mode {
    background-color: #222;
    color: white;
}

.dark-mode .container {
    background-color: #333;
    color: white;
}
