/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #fff 0%, #fef5f1 100%);
    padding: 40px 0;
    border-bottom: 4px solid #E85D33;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.logo {
    flex-shrink: 0;
}

.title-section h1 {
    font-size: 2.5em;
    font-weight: 400;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.title-section h2 {
    font-size: 3em;
    font-weight: 400;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.slogan {
    font-size: 1.3em;
    color: #E85D33;
    font-weight: 500;
    margin-top: 10px;
}

/* Main Content */
main {
    padding: 60px 0;
}

section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #F4A460;
}

h3 {
    font-size: 2em;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #E85D33, #F4A460);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.service-column ul {
    list-style: none;
}

.service-column li {
    font-size: 1.2em;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-column li:hover {
    padding-left: 40px;
    color: #E85D33;
}

.service-column li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #F4A460;
    font-size: 1.2em;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-info {
    padding: 20px;
    background: #fef5f1;
    border-radius: 8px;
    border-top: 3px solid #E85D33;
}

.contact-info h4 {
    font-size: 1.3em;
    color: #E85D33;
    margin-bottom: 15px;
    font-style: italic;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.8;
}

.contact-info a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #E85D33;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: 30px 0;
    text-align: center;
    border-top: 4px solid #E85D33;
}

footer p {
    font-size: 1em;
}

footer a {
    color: #F4A460;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #E85D33;
    text-decoration: underline;
}

/* Impressum Section */
.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-content h4 {
    font-size: 1.4em;
    color: #E85D33;
    margin-top: 30px;
    margin-bottom: 15px;
    font-style: italic;
}

.impressum-content p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.impressum-content a {
    color: #E85D33;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: #F4A460;
    text-decoration: underline;
}

.back-link {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.back-link a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #E85D33, #F4A460);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.back-link a:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(232, 93, 51, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .title-section h1 {
        font-size: 1.8em;
    }

    .title-section h2 {
        font-size: 2.2em;
    }

    .slogan {
        font-size: 1.1em;
    }

    h3 {
        font-size: 1.6em;
    }

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

    section {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .title-section h1 {
        font-size: 1.4em;
    }

    .title-section h2 {
        font-size: 1.8em;
    }

    .slogan {
        font-size: 1em;
    }

    .service-column li {
        font-size: 1em;
    }
}
