body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

/* Intro Section - wie Leistungen-Seite */
.intro {
    background: #fbd980;
    padding: 50px 0;
    text-align: center;
}

.intro h1 {
    font-size: 2.5em;
    color: #333;
}

.intro p {
    font-size: 1.2em;
    color: #555;
}

/* Allgemeine Sektionen */
.ueber-uns-section {
    padding: 50px 0;
    background: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ueber-uns-section .container {
    max-width: 800px;
}

.ueber-uns-section h2 {
    font-size: 2em;
    color: #7bc7ce;
    margin-bottom: 20px;
}

.ueber-uns-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

/* Alternative Hintergrundfarbe */
.alt-bg {
    background: #f7f7f7;
}

/* Highlight Box */
.highlight-box {
    background: rgba(123, 199, 206, 0.1);
    border-left: 4px solid #7bc7ce;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.highlight-box p {
    margin: 0;
}

/* Zitat */
blockquote {
    font-style: italic;
    color: #7bc7ce;
    border-left: 4px solid #f7b35e;
    padding-left: 20px;
    margin: 20px 0;
    text-align: left;
}

/* Listen */
.values-list, 
.features-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.values-list li, 
.features-list li {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Highlight Text */
.highlight {
    color: #7bc7ce;
}

/* CTA Section */
.cta-section {
    background: #7bc7ce;
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-button {
    background: white;
    color: #7bc7ce;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    background: #f7b35e;
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
}

.closing-text {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}