/* Allgemeine Stile */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Navbar Stile */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0044cc; /* Blau */
    color: #fff;
    padding: 10px;
    border-bottom: 2px solid #ff8f00; /* Orange */
}

.navlinks {
    list-style: none;
    display: flex;
    margin: 0;
}

.navlinks li {
    margin-left: 20px;
}

nav {
    display: flex;
    justify-content: right;
    align-items: center;
    background-color: #0044cc; /* Blau */
    color: #fff;
    padding: 10px;
    border-bottom: 2px solid #ff8f00; /* Orange */
}

nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
    border-radius: 5px;
}

nav ul li:hover {
    background-color: #0066ff; /* Helles Blau */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Bereich Stile */
.hero {
    background: #0044cc; /* Blau */
    color: #ffffff;
    padding-top: 30px;
    min-height: 500px;
}

.hero h1 {
    text-transform: uppercase;
    margin-top: 100px;
    font-size: 55px;
}

.hero p {
    font-size: 20px;
}

.cta-btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #ff8f00; /* Orange */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #ff6f00; /* Dunkles Orange */
}

/* Dienstleistungen Bereich Stile */
.services {
    margin: 50px 0;
    overflow: hidden;
}

.service-item {
    float: left;
    width: 48%;
    padding: 1%;
    box-sizing: border-box;
}

.service-item h3 {
    margin-bottom: 20px;
}

/* Testimonials Bereich Stile */
.testimonials {
    padding: 50px 0;
    background: #e0f7fa;
    color: #0044cc;
}

.testimonials blockquote {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonials cite {
    font-size: 16px;
    margin-top: 5px;
    display: block;
}

/* Footer Stile */
.footer {
    background-color: #0044cc;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    padding-right: 10px;
}

.footer a:last-child {
    border-right: none;
}

.footer .container {
    display: flex;
    justify-content: center;
}

.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

/* Landing Page spezifische Stile */
#landing-container {
    background: #e6f7ff; /* Hellblau */
    padding: 50px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px #00000026;
}

#landing-container h1 {
    color: #0044cc; /* Dunkelblau */
    font-size: 2.5em;
    margin-bottom: 20px;
}

#landing-container p {
    color: #333;
    font-size: 18px;
    line-height: 1.6em;
    margin-bottom: 20px;
}

#landing-container a.cta-button {
    display: inline-block;
    background-color: #ff8c00; /* Orange */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#landing-container a.cta-button:hover {
    background-color: #e07b00; /* Dunkleres Orange */
}

/* Ajax Content Container */
#content {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px #00000026;
}

/* Überarbeitung für die Landing Page */
#hero-section {
    padding: 50px;
    text-align: center;
}

#services-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.service-card {
    width: 48%;
    box-sizing: border-box;
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px #00000026;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#cta-section {
    text-align: center;
    padding: 50px;
    background-color: #e0f7fa;
    color: #0044cc;
}

.cta-button {
    background-color: #ff8c00;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e07b00;
}