* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
}

header {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

header .navbar h1 {
    font-size: 2.5rem;
    color: #f5f5f5;
}

header nav ul {
    list-style: none;
    margin-top: 10px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff6600;
}

.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #f5f5f5;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
}

.reisen-section {
    padding: 40px 20px;
    text-align: center;
}

.reisen-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.reise-card {
    display: inline-block;
    width: 45%;
    margin: 20px;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.reise-card img {
    width: 100%;
    border-radius: 10px;
}

.reise-card h3 {
    font-size: 1.8rem;
    margin-top: 15px;
    color: #ff6600;
}

.reise-card p {
    font-size: 1.2rem;
}

.kontakt-section {
    padding: 40px 20px;
    background-color: #333;
    text-align: center;
}

.kontakt-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.kontakt-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kontakt-section form input, .kontakt-section form textarea {
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #444;
    border: 1px solid #666;
    border-radius: 5px;
    color: #f5f5f5;
}

.kontakt-section form button {
    width: 320px;
    padding: 10px;
    background-color: #ff6600;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.kontakt-section form button:hover {
    background-color: #ff3300;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #f5f5f5;
    position: relative;
    bottom: 0;
    width: 100%;
}
