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

html {
    scroll-behavior: smooth;
}

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a2332;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.intro-asymmetric {
    padding: 100px 30px;
    background-color: #ffffff;
}

.intro-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a2332;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-grid {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a2332;
}

.section-header-centered p {
    font-size: 18px;
    color: #6b7280;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 22px 26px 12px;
    color: #1a2332;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 26px 18px;
    color: #4b5563;
    flex: 1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 26px 18px;
}

.btn-select-service {
    margin: 0 26px 26px;
    padding: 12px 24px;
    background-color: #1a2332;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2563eb;
    transform: scale(1.02);
}

.form-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.form-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: stretch;
}

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a2332;
}

.form-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 35px;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-point .icon {
    width: 28px;
    height: 28px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.info-point span:last-child {
    font-size: 17px;
    color: #374151;
}

.form-container {
    flex: 1;
    background-color: #f9fafb;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.why-choose {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a2332;
}

.reasons-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.reason-block {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reason-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a2332;
}

.reason-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.footer {
    background-color: #1a2332;
    color: #e5e7eb;
    padding: 60px 30px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #374151;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #4b5563;
}

.page-hero {
    background-color: #1a2332;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 18px;
}

.page-hero-content p {
    font-size: 20px;
    color: #d1d5db;
}

.about-story {
    padding: 90px 30px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a2332;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a2332;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-item {
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a2332;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.team-approach {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

.approach-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a2332;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.step {
    flex: 1 1 calc(50% - 18px);
    min-width: 280px;
    background-color: #f9fafb;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.equipment-section {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.equipment-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.equipment-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.equipment-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.equipment-text {
    flex: 1.3;
}

.equipment-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a2332;
}

.equipment-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.link-inline {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.service-detail-block {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a2332;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.service-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
}

.price-label {
    font-size: 18px;
    color: #6b7280;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.btn-service-action {
    padding: 14px 32px;
    background-color: #1a2332;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-action:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-section-services {
    padding: 80px 30px;
    background-color: #1a2332;
    color: #ffffff;
}

.cta-services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-services-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d1d5db;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a2332;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    gap: 70px;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a2332;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impressum-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #f9fafb;
}

.impressum-content {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.impressum-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a2332;
}

.impressum-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a2332;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a5568;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #6b7280;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-return-home,
.btn-view-services {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-return-home {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-return-home:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-view-services {
    background-color: #e5e7eb;
    color: #1a2332;
}

.btn-view-services:hover {
    background-color: #d1d5db;
}

.legal-page {
    padding: 60px 30px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2332;
}

.legal-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a2332;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #374151;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-container ul {
    margin: 16px 0 16px 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-container a {
    color: #2563eb;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookies-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        min-height: auto;
    }

    .hero-content {
        padding: 60px 40px;
    }

    .hero-image {
        height: 400px;
    }

    .intro-offset,
    .story-layout,
    .equipment-layout,
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

    .form-split-layout {
        flex-direction: column;
    }

    .reasons-layout {
        flex-direction: column;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        padding: 35px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .intro-text h2,
    .story-text h2,
    .equipment-text h2 {
        font-size: 30px;
    }

    .section-header-centered h2,
    .why-choose h2,
    .values-section h2,
    .approach-container h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-return-home,
    .btn-view-services {
        width: 100%;
        text-align: center;
    }
}