/* Reset some default styles */
body, h1, h2, h3, p, ul, ol {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

nav {
    background-color: #004080; /* Lufthansa Blue */
    color: #fff;
    padding: 1rem 0;
}

.nav-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo-img {
    height: 50px;
}

.nav-bar {
    list-style: none;
    display: flex;
}

.nav-bar li {
    margin-left: 20px;
}

.nav-button {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: #ffcc00; /* Accent color */
}

section {
    padding: 2rem 0;
    width: 90%;
    margin: 0 auto;
}

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.25rem;
}

.cta-button {
    background-color: #ffcc00; /* Accent color */
    color: #004080; /* Lufthansa Blue */
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6b800;
}

.introduction, .features, .booking, .careers, .corporate, .contact {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.features-grid, .careers-grid, .corporate-grid, .contact-grid {
    display: flex;
    gap: 1rem;
}

.feature-card, .card {
    background: #e6e6e6;
    border-radius: 8px;
    padding: 1rem;
    flex: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 1rem;
}

.explore-next {
    background: #004080; /* Lufthansa Blue */
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.explore-next h2 {
    margin-bottom: 1rem;
}

.explore-links a {
    background: #ffcc00; /* Accent color */
    color: #004080; /* Lufthansa Blue */
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    margin: 0.5rem;
    display: inline-block;
    font-weight: bold;
}

.explore-links a:hover {
    background: #e6b800;
}

footer {
    background-color: #004080; /* Lufthansa Blue */
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
}

form button {
    background-color: #ffcc00; /* Accent color */
    color: #004080; /* Lufthansa Blue */
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #e6b800;
}
