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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    color: #333;
    background-color: #FFF0DD;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    background-color: #FFF0DD;
    padding: 30px 0 20px;
}

.logo .container {
    text-align: left;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5a7a85;
    letter-spacing: 2px;
    padding-left: 30px;
}

.logo h1 a {
    color: #5a7a85;
    text-decoration: none;
}

.logo h1 a:hover {
    color: #86B0BD;
}

@media (max-width: 768px) {
    .logo h1 {
        padding-left: 0;
    }
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(45deg, #86B0BD, #E2A16F, #86B0BD, #E2A16F);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.hero .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Introduction Section */
.intro {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: #FFF0DD;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #86B0BD;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Quote Section */
.quote {
    background: linear-gradient(135deg, #86B0BD 0%, #E2A16F 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.quote blockquote {
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.quote cite {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-text .title {
    margin-top: 30px;
    font-size: 1.3rem;
    color: #86B0BD;
    font-weight: 600;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Impressum Page Content */
.content {
    background: white;
    margin: 40px auto;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.content h2 {
    color: #86B0BD;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.content h3 {
    color: #86B0BD;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content a {
    color: #86B0BD;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

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

footer p {
    margin: 10px 0;
}

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

footer a:hover {
    color: #86B0BD;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

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

    .quote blockquote {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .content {
        padding: 40px 25px;
        margin: 20px auto;
    }

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