/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5rem;
    background: #f8fafc;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Intro Split */
.intro-split {
    display: flex;
    align-items: center;
}

.intro-visual {
    flex: 0.9;
    overflow: hidden;
}

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

.intro-content {
    flex: 1.1;
    padding: 5rem 5rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: #0f172a;
    padding: 5rem 2rem;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Preview Split */
.service-preview-split {
    display: flex;
    align-items: center;
    background: #f1f5f9;
}

.service-content {
    flex: 1;
    padding: 5rem 5rem;
}

.service-content h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    font-size: 1.05rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Trust Section */
.trust-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

.trust-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.trust-content {
    flex: 1;
}

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

.trust-logos {
    flex: 1;
    display: flex;
    align-items: center;
}

.client-quote {
    background: #f8fafc;
    padding: 2.5rem;
    border-left: 4px solid #3b82f6;
}

.client-quote blockquote {
    font-size: 1.2rem;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.client-quote cite {
    color: #64748b;
    font-style: normal;
    font-size: 0.95rem;
}

/* Services Overview */
.services-overview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.service-card.featured h3,
.service-card.featured .price,
.service-card.featured p,
.service-card.featured li {
    color: #ffffff;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.service-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: #334155;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 1.5rem;
}

.service-select {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-select:hover {
    background: #1e40af;
}

.service-card.featured .service-select {
    background: #ffffff;
    color: #667eea;
}

.service-card.featured .service-select:hover {
    background: #f1f5f9;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: #f1f5f9;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    padding-right: 2rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-display {
    background: #e0f2fe;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #0284c7;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #0c4a6e;
}

#selected-service-name {
    color: #075985;
    font-weight: 600;
}

.booking-form {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-secondary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: #2563eb;
    color: #ffffff;
}

.cta-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.cta-secondary-large {
    background: #10b981;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-secondary-large:hover {
    background: #059669;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    gap: 0.5rem;
}

.link-arrow:after {
    content: "→";
    transition: transform 0.3s ease;
}

.link-arrow:hover:after {
    transform: translateX(5px);
}

/* CTA Split Final */
.cta-split-final {
    display: flex;
    align-items: center;
    background: #1e293b;
    padding: 0;
}

.cta-content {
    flex: 1;
    padding: 5rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.cta-action {
    flex: 1;
    background: #0f172a;
    padding: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */
.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    color: #94a3b8;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3b82f6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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: 2rem;
}

.cookie-content p {
    color: #cbd5e1;
    flex: 1;
}

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: #64748b;
    color: #ffffff;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #e0e7ff;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 2rem;
}

.services-intro-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.intro-benefits {
    flex: 1;
}

.intro-benefits ul {
    list-style: none;
}

.intro-benefits li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    font-size: 1.05rem;
    border-bottom: 1px solid #e2e8f0;
}

.intro-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-detail-cards {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.service-detail-content h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.price-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.service-detail-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card .service-detail-split {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-card h3,
.featured-card h4,
.featured-card p,
.featured-card li {
    color: #ffffff !important;
}

.featured-card .price-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.services-cta {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem;
    background: #f1f5f9;
    border-radius: 8px;
}

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

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

/* About Page */
.about-story-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.story-content {
    flex: 1;
    padding-right: 4rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    border-radius: 8px;
    width: 100%;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #475569;
    line-height: 1.7;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-intro {
    flex: 1;
}

.team-intro h2 {
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.team-stats {
    flex: 1;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-stat {
    text-align: center;
}

.experience-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: #f1f5f9;
}

.experience-visual {
    flex: 1;
}

.experience-visual img {
    border-radius: 8px;
    width: 100%;
}

.experience-content {
    flex: 1;
    padding-left: 4rem;
}

.experience-content h2 {
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.industry-list {
    list-style: none;
}

.industry-list li {
    margin-bottom: 1rem;
    color: #334155;
    line-height: 1.6;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.approach-step p {
    color: #475569;
    line-height: 1.6;
}

.partnerships {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.partnerships h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

.partnerships-content {
    max-width: 900px;
    margin: 0 auto;
}

.partnerships-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: #475569;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.85);
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.contact-details-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: #f8fafc;
}

.details-content {
    flex: 1;
    padding-right: 3rem;
}

.details-content h2 {
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.details-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.details-visual {
    flex: 1;
}

.details-visual img {
    border-radius: 8px;
    width: 100%;
}

.anfahrt-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.anfahrt-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

.anfahrt-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.anfahrt-method {
    flex: 1;
}

.anfahrt-method h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.anfahrt-method p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-contact {
    padding: 5rem 2rem;
    text-align: center;
    background: #f1f5f9;
}

.cta-contact h2 {
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.selected-service-info {
    background: #e0f2fe;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: none;
}

.selected-service-info h3 {
    font-size: 1.3rem;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

#thanks-service-name {
    font-size: 1.4rem;
    color: #075985;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.thanks-additional {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.thanks-additional h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.legal-intro {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: #475569;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.cookie-table td {
    color: #475569;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .service-preview-split,
    .trust-split,
    .form-container-split,
    .cta-split-final,
    .about-story-split,
    .team-split,
    .experience-split,
    .contact-split,
    .services-intro-split,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-details-split,
    .anfahrt-split,
    .approach-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .service-content,
    .cta-content,
    .story-content,
    .experience-content,
    .details-content {
        padding: 3rem 2rem;
    }

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

    .intro-content h2,
    .service-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

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

    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .stats-grid {
        gap: 2rem;
    }

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
}
