/* Grundlegende Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, p {
    margin: 0 0 15px;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    background: #1A237E;
    padding: 15px;
}

header .logo {
    font-size: 32px;
    color: white;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('titel.png') no-repeat center center;
    background-size: cover;
    padding: 240px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
}

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

.cta-btn {
    background-color: #FF9800;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
}

/* Über mich Section */
.about {
    padding: 60px 15px;
    text-align: center;
}

.about img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Fähigkeiten Section */
.skills {
    background: #f4f4f4;
    padding: 60px 15px;
    text-align: center;
}

.skills h2 {
    font-size: 2rem;
}

.skills ul {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.skills li {
    font-size: 1.2rem;
}

/* Dienstleistungen Section */
.services {
    padding: 60px 15px;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
}

.services ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.services li {
    font-size: 1.2rem;
}

/* Kontakt Section */
.contact {
    background: #1A237E;
    padding: 60px 15px;
    color: white;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact button {
    background-color: #FF9800;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
