* {
    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: #333;
    background: #fff;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
}

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

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

.btn-cookie-reject {
    background: #7f8c8d;
    color: #fff;
}

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

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2980b9;
}

.ad-notice {
    font-size: 12px;
    color: #95a5a6;
    border-left: 1px solid #e0e0e0;
    padding-left: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    display: block;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    background: #34495e;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #21618c;
}

.split-content-left,
.split-content-right {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.split-content-left .content-image {
    flex: 0 0 45%;
    background: #bdc3c7;
}

.split-content-left .content-text {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.split-content-right .content-text {
    flex: 1;
    padding: 80px 60px;
    background: #ecf0f1;
}

.split-content-right .content-image {
    flex: 0 0 45%;
    background: #bdc3c7;
}

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

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #95a5a6;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 20px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.btn-select-service.selected {
    background: #27ae60;
}

.form-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #ffc107;
    display: none;
}

.form-notice.active {
    display: block;
}

.service-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2980b9;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #21618c;
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.5;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 968px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .ad-notice {
        border: none;
        padding: 0;
        margin-top: 10px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .split-content-left,
    .split-content-right {
        flex-direction: column;
    }

    .split-content-left .content-image,
    .split-content-right .content-image {
        min-height: 300px;
    }

    .content-text {
        padding: 40px 30px !important;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-form {
        padding: 30px 20px;
    }
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.thanks-container .btn-primary {
    margin-top: 30px;
}

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

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.content-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 16px;
}

.content-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.content-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-box {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.impressum-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.impressum-section h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.impressum-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}