body {
    font-family: 'Inter', sans-serif;
}
.hero-bg {
    background-image: url('https://placehold.co/1200x600/a3b18a/ffffff?text=Comfortable+Journeys+Await');
    background-size: cover;
    background-position: center;
}
/* Accessibility: Style for the visually hidden "skip to content" link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0f766e; /* teal-700 */
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}


.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
}
/* Simple transition for fading in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.wizard-step.active {
    animation: fadeIn 0.5s ease-in-out;
}
.wizard-card {
    transition: all 0.2s ease-in-out;
}
