* {
    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 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #fff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

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

.hero-left p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.services-preview {
    display: flex;
}

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

.content-right {
    order: 2;
}

.content-left {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content-left img, .content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-block {
    padding: 60px;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.text-block p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.pricing-section {
    padding: 80px 60px;
    background: #f9fafb;
}

.pricing-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.price-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.price-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.price-card p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.trust-split {
    display: flex;
}

.trust-image {
    flex: 1;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
    order: 2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    font-size: 17px;
    color: #4b5563;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.link-arrow {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #1d4ed8;
}

.contact-form-section {
    padding: 80px 60px;
    background: #fff;
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #111827;
}

.form-intro p {
    font-size: 17px;
    color: #6b7280;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

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

.btn-submit:hover {
    background: #1d4ed8;
}

.process-section {
    padding: 80px 60px;
    background: #f3f4f6;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 calc(25% - 40px);
    min-width: 220px;
    text-align: center;
}

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

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.step p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
}

.testimonials-inline {
    padding: 80px 60px;
    background: #fff;
}

.testimonials-inline h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.testimonial-row {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 40px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-header {
    padding: 80px 60px 40px;
    text-align: center;
    background: #f9fafb;
}

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

.page-header p {
    font-size: 20px;
    color: #6b7280;
}

.about-split {
    display: flex;
}

.about-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

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

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.values-section {
    display: flex;
}

.values-image {
    flex: 1;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.values-content {
    flex: 1;
    order: 2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

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

.mission-full {
    padding: 80px 60px;
    background: #f3f4f6;
}

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

.mission-container h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #111827;
}

.mission-container p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-approach {
    padding: 80px 60px;
    background: #fff;
}

.team-approach h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.approach-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    padding: 28px;
    background: #f9fafb;
    border-radius: 6px;
}

.approach-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.approach-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

.service-detail-split.reverse .service-visual {
    order: 1;
}

.service-detail-split.reverse .service-text {
    order: 2;
}

.service-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #111827;
}

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

.service-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 24px;
}

.extra-services {
    padding: 80px 60px;
    background: #f9fafb;
}

.extra-services h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.included-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.included-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    padding: 28px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.included-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.included-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: #fff;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #111827;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-area {
    padding: 80px 60px;
    background: #f3f4f6;
}

.service-area h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #111827;
    text-align: center;
}

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

.area-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 32px;
    text-align: center;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.city-item {
    padding: 12px 24px;
    background: #fff;
    border-radius: 6px;
    font-size: 15px;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.thanks-section {
    padding: 100px 60px;
    background: #f9fafb;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #111827;
}

.thanks-container p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 24px;
}

.service-confirmation {
    margin: 24px 0;
    padding: 16px;
    background: #eff6ff;
    border-radius: 6px;
}

.service-confirmation p {
    font-size: 16px;
    color: #1e40af;
    margin: 0;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111827;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #1d4ed8;
}

.legal-page {
    padding: 40px 60px 80px;
    background: #fff;
}

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

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

.legal-container .updated {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

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

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-container li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-split,
    .services-preview,
    .trust-split,
    .about-split,
    .values-section,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 24px;
    }

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

    .text-block,
    .trust-content,
    .about-content,
    .values-content,
    .service-text,
    .contact-info {
        padding: 40px 24px;
    }

    .pricing-section,
    .contact-form-section,
    .process-section,
    .testimonials-inline,
    .team-approach,
    .extra-services,
    .service-area {
        padding: 60px 24px;
    }

    .price-card {
        min-width: 100%;
    }

    .form-container {
        padding: 24px;
    }

    .process-steps {
        gap: 32px;
    }

    .step {
        min-width: 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .page-header {
        padding: 60px 24px 30px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .legal-page {
        padding: 30px 24px 60px;
    }

    .thanks-section {
        padding: 60px 24px;
    }

    .thanks-container {
        padding: 40px 24px;
    }

    .footer-grid {
        gap: 40px;
    }
}