body {
    background-color: #1a1b26;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 30px;
    background-color: #24283b;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #89b4fa;
}

.subtitle {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #a6adc8;
}

.form {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.input {
    background-color: #313244;
    border: 1px solid #45475a;
    color: #e0e0e0;
    padding: 12px;
    width: 60%;
    border-radius: 8px 0 0 8px;
    font-size: 1em;
}

.button {
    background-color: #89b4fa;
    border: none;
    color: #1a1b26;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 0 8px 8px 0;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #74c7ec;
}

.card {
    background-color: #313244;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #cdd6f4;
}

.info-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.info-list strong {
    color: #89b4fa;
    margin-right: 10px;
}

.map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #45475a;
}

.error {
    color: #f38ba8;
    font-size: 1.2em;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .form { flex-direction: column; }
    .input { width: 100%; border-radius: 8px; margin-bottom: 10px; }
    .button { border-radius: 8px; }
}