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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
}

.construction-container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #3e6b6e;
}

.logo-container {
    margin: 0 auto 30px;
    max-width: 200px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.main-title {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #ce9429;
    margin: 0 auto 30px;
}

.description {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.info-section {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: #fafafa;
    border-left: 3px solid #3e6b6e;
}

.info-section h2 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.offer-list {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.offer-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1em;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.offer-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3e6b6e;
    font-size: 1.5em;
    line-height: 0.8;
}

.contact-section {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.contact-section h2 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-section p {
    color: #555;
    font-size: 1em;
    margin-bottom: 10px;
}

.contact-email {
    margin-top: 15px;
}

.contact-email a {
    color: #3e6b6e;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s;
}

.contact-email a:hover {
    color: #ce9429;
    text-decoration: underline;
}

.footer-text {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-text p {
    color: #888;
    font-size: 0.95em;
    margin: 8px 0;
}

.footer-link {
    margin-top: 15px !important;
}

.footer-link a {
    color: #3e6b6e;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-link a:hover {
    color: #ce9429;
    text-decoration: underline;
}

.impressum-content {
    text-align: left;
    max-width: 550px;
    margin: 0 auto;
}

.impressum-content h2 {
    color: #3e6b6e;
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.impressum-content h2:first-child {
    margin-top: 0;
}

.impressum-content h3 {
    color: #2c3e50;
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.impressum-content p {
    color: #555;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
    .construction-container {
        padding: 40px 25px;
    }
    
    .main-title {
        font-size: 1.6em;
    }
    
    .description {
        font-size: 1em;
    }
    
    .info-section,
    .contact-section {
        padding: 20px;
    }
    
    .logo-container {
        max-width: 150px;
    }
}
