* {
    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.6;
    color: #222;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #111;
}

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

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

.hero-content {
    max-width: 580px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
}

.hero-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #111;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #111;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #111;
    color: #fff;
}

.intro-split {
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.split-content {
    flex: 1;
    padding: 80px 100px;
}

.split-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #111;
    line-height: 1.2;
}

.split-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-section {
    padding: 100px 40px;
    background: #111;
    color: #fff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.center-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 250px;
}

.trust-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.7;
}

.services-showcase {
    padding: 120px 40px;
}

.section-headline {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #111;
}

.service-split {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
}

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

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.service-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.7;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #333;
    transform: translateY(-2px);
}

.testimonials-flow {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #777;
}

.form-section {
    padding: 100px 40px;
}

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

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

.form-intro h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.booking-form {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 12px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

.final-cta-split {
    display: flex;
    align-items: center;
    background: #111;
    color: #fff;
}

.cta-content-left {
    flex: 1;
    padding: 100px 80px;
}

.cta-content-left h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-content-left p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #ccc;
}

.cta-visual-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.cta-visual-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-column a {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background: #f8f9fa;
}

.page-hero-content {
    flex: 1;
    padding: 80px 100px;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
    line-height: 1.1;
}

.page-hero-content p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

.page-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.values-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

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

.team-highlight-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.team-highlight-split.reverse {
    flex-direction: row-reverse;
}

.stats-section {
    padding: 100px 40px;
    background: #111;
    color: #fff;
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: #aaa;
}

.commitment-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.cta-about {
    padding: 100px 40px;
    text-align: center;
    background: #f8f9fa;
}

.cta-about h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.cta-about p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.services-detail {
    padding: 80px 40px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
}

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

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

.service-detail-left img {
    width: 100%;
    border-radius: 12px;
}

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

.service-detail-right h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.service-detail-right p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    font-size: 16px;
    color: #666;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.service-price {
    margin-bottom: 24px;
}

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

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #111;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info-side {
    flex: 1;
    padding: 80px 100px;
    background: #f8f9fa;
}

.contact-info-side h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #111;
}

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

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

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

.contact-block a {
    color: #111;
    text-decoration: underline;
}

.contact-map-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

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

.contact-additional {
    padding: 80px 40px;
}

.contact-additional h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
    text-align: center;
}

.contact-additional p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #111;
    text-align: center;
}

.faq-item {
    background: #fff;
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

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

.thanks-hero {
    padding: 120px 40px;
    text-align: center;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.thanks-lead {
    font-size: 22px;
    color: #555;
    margin-bottom: 32px;
}

.thanks-message p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.thanks-next-steps {
    padding: 80px 40px;
}

.thanks-next-steps h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #111;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

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

.thanks-info-split {
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.thanks-info-split .split-content {
    flex: 1;
    padding: 80px 100px;
}

.thanks-info-split .split-image {
    flex: 1;
}

.thanks-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.thanks-contact {
    padding: 80px 40px;
    text-align: center;
}

.thanks-contact h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
}

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

.thanks-contact a {
    color: #111;
    text-decoration: underline;
}

.legal-page {
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.legal-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #111;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #222;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: #111;
    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: 1px solid #ddd;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #111;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-split,
    .final-cta-split,
    .page-hero-split,
    .about-split,
    .team-highlight-split,
    .commitment-split,
    .service-detail-card,
    .contact-split,
    .thanks-info-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-split.reverse,
    .team-highlight-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-image,
    .service-visual,
    .service-info,
    .cta-content-left,
    .cta-visual-right,
    .page-hero-content,
    .page-hero-image,
    .service-detail-left,
    .service-detail-right,
    .contact-info-side,
    .contact-map-side {
        flex: auto;
        width: 100%;
    }

    .hero-left,
    .split-content,
    .service-info,
    .cta-content-left,
    .page-hero-content,
    .service-detail-right,
    .contact-info-side {
        padding: 60px 40px;
    }

    .hero-content h1,
    .split-content h2,
    .page-hero-content h1 {
        font-size: 38px;
    }

    .section-headline {
        font-size: 38px;
    }

    .service-info h3 {
        font-size: 28px;
    }

    .nav-split {
        padding: 16px 24px;
    }

    .nav-right {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .trust-grid,
    .values-grid,
    .stats-grid,
    .steps-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-lead {
        font-size: 17px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .section-headline {
        font-size: 32px;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .nav-right {
        flex-direction: column;
        gap: 12px;
        font-size: 14px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
}