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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-split {
    display: flex;
    min-height: 520px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    background: #f4f4f4;
    color: #2c3e50;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-secondary:hover {
    background: #e8e8e8;
}

.cta-inline {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-inline:hover {
    background: #1557b0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.intro-section {
    background: #f8f9fa;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left h2,
.content-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-left p,
.content-right p {
    margin-bottom: 16px;
    font-size: 17px;
}

.content-right img,
.content-left img {
    width: 100%;
    border-radius: 8px;
    background: #e0e0e0;
}

.services-preview {
    padding: 100px 24px;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
}

.service-card p {
    margin: 0 24px 16px;
    color: #5a5a5a;
    font-size: 15px;
}

.service-card .price {
    display: block;
    margin: 0 24px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #1a73e8;
}

.cta-center {
    text-align: center;
}

.approach-section {
    background: #ffffff;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
    font-size: 20px;
}

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

.contact-form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
    font-size: 17px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.contact-form button {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #1557b0;
}

.disclaimer-section {
    background: #fff8e1;
    padding: 48px 24px;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 24px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.services-detailed {
    padding: 60px 24px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    background: #e0e0e0;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 16px;
    font-size: 17px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-size: 24px;
    line-height: 16px;
}

.service-pricing {
    margin: 32px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
}

.about-content {
    background: #ffffff;
}

.values-section {
    background: #f8f9fa;
    padding: 80px 24px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #5a5a5a;
}

.team-section {
    background: #ffffff;
}

.experience-section {
    background: #f8f9fa;
    padding: 80px 24px;
}

.experience-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.experience-section p {
    font-size: 17px;
    margin-bottom: 16px;
}

.experience-list {
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

.experience-list li {
    padding-left: 32px;
    margin-bottom: 14px;
    position: relative;
    font-size: 17px;
}

.experience-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.contact-info-section {
    background: #ffffff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a73e8;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
}

.impressum-section {
    background: #f8f9fa;
    padding: 80px 24px;
}

.impressum-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

.impressum-content h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.impressum-content p {
    margin-bottom: 16px;
    font-size: 16px;
}

.thanks-section {
    padding: 100px 24px;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a73e8;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 32px;
}

.thanks-details {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
}

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

.next-steps {
    padding: 80px 24px;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 10px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a73e8;
}

.step-card p {
    font-size: 16px;
    color: #5a5a5a;
}

.legal-content {
    padding: 60px 24px;
}

.legal-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 24px 32px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

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

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

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

    .hero-content {
        padding: 48px 24px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 32px;
    }

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

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

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

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }
}