body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    background-color: #0d0f1a;
}

.hero {
    background: url('dein-buerogebaeude.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

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

.hero h1 span {
    color: gold;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    background: linear-gradient(145deg, gold, darkorange);
    color: #000;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.kontaktformular {
    padding: 60px 20px;
    background-color: #141622;
    text-align: center;
}

.kontaktformular h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.kontaktformular form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: auto;
}

.kontaktformular input,
.kontaktformular textarea {
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
}

.kontaktformular button {
    padding: 12px;
    font-size: 1rem;
    background: gold;
    color: #000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

footer {
    background-color: #0a0b10;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 10px;
}
