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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navigation {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.ad-notice {
    font-size: 0.75rem;
    color: #999999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444444;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #2c3e50;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
}

.intro-block {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

.services-preview {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.services-preview h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555555;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
}

.why-choose-us {
    background-color: #34495e;
    padding: 5rem 2rem;
    color: #ffffff;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.why-choose-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section > .container-medium > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555555;
    font-size: 1.05rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666666;
    font-style: italic;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #229954;
}

.btn-cookie-alt {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background-color: #6c7a7b;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
}

.values-section {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #555555;
    line-height: 1.6;
}

.team-approach {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.team-approach h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-approach p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
}

.geographical-reach {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.geographical-reach h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.geographical-reach p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

.services-detailed {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.service-detail-block {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-detail-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.service-note {
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
}

.cta-services {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-services p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555555;
}

.btn-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-link:hover {
    background-color: #2980b9;
}

.impressum-content {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.impressum-content h2,
.impressum-content h3 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.impressum-content h2 {
    font-size: 1.8rem;
}

.impressum-content h3 {
    font-size: 1.4rem;
}

.impressum-content h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.impressum-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1rem;
}

.thanks-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-section > .container-narrow > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #444444;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-info ol {
    padding-left: 1.5rem;
}

.thanks-info li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #444444;
}

.legal-content {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
}

.legal-content h3 {
    font-size: 1.4rem;
}

.legal-content h4 {
    font-size: 1.2rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .service-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}