* {
    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: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

.nav-right a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

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

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

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #1d4ed8;
}

.hero-image {
    flex: 1;
    background: #cbd5e1;
    position: relative;
    overflow: hidden;
}

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

.trust-indicators {
    background: #ffffff;
    padding: 60px 0;
}

.indicator-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.indicator-item {
    text-align: center;
}

.indicator-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.indicator-item p {
    font-size: 16px;
    color: #64748b;
}

.services-preview {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header-offset {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-intro {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e2e8f0;
}

.service-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin: 24px 24px 12px;
    font-weight: 600;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 24px 20px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #f1f5f9;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.select-service.selected {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #64748b;
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    padding: 16px;
    background: #f1f5f9;
    border-radius: 8px;
    color: #64748b;
    font-size: 15px;
}

.selected-service-display.active {
    background: #dbeafe;
    color: #1e40af;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.why-us-split {
    display: flex;
    padding: 100px 0;
    background: #ffffff;
}

.why-content {
    flex: 1;
    padding: 60px;
}

.why-content h2 {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.benefits-list li {
    padding: 16px 0;
    padding-left: 32px;
    font-size: 17px;
    color: #475569;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.why-image {
    flex: 1;
    background: #f1f5f9;
}

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

.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials h2 {
    font-size: 40px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background: #fef3c7;
}

.disclaimer-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #475569;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

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

.about-image {
    flex: 1;
    background: #f1f5f9;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 0;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 40px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.approach-content {
    flex: 1;
}

.approach-content p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background: #f1f5f9;
}

.approach-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.cta-section {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1d4ed8;
}

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

.services-intro {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-card img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    background: #e2e8f0;
}

.service-detail-card > div {
    flex: 1;
    padding: 40px;
}

.service-detail-card h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 28px;
    font-size: 15px;
    color: #475569;
    position: relative;
}

.service-includes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

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

.service-cta {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #1d4ed8;
}

.pricing-info {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-info h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
}

.pricing-details p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.warranty-section {
    padding: 80px 0;
    background: #ffffff;
}

.warranty-section h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.warranty-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.warranty-card h3 {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 16px;
    font-weight: 700;
}

.warranty-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 18px;
    color: #2563eb;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.contact-email {
    font-family: monospace;
    font-size: 16px;
    color: #1e293b;
}

.contact-note {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background: #f1f5f9;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.service-area {
    padding: 80px 0;
    background: #f8fafc;
}

.service-area h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.service-area > p {
    font-size: 17px;
    color: #64748b;
    text-align: center;
    margin-bottom: 32px;
}

.areas-list {
    max-width: 600px;
    margin: 0 auto 32px;
    list-style: none;
}

.areas-list li {
    padding: 12px 0;
    padding-left: 32px;
    font-size: 16px;
    color: #475569;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.areas-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.areas-note {
    font-size: 15px;
    color: #94a3b8;
    text-align: center;
    font-style: italic;
}

.legal-page {
    padding: 60px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.legal-page h2 {
    font-size: 28px;
    color: #1e293b;
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #2563eb;
    margin: 24px 0 16px;
    font-weight: 600;
}

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

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

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

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 0;
    background: #f8fafc;
}

.thanks-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-info {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-info p {
    font-size: 16px;
    color: #475569;
}

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

.next-steps h2 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 16px 0 16px 50px;
    font-size: 16px;
    color: #64748b;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

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

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

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .hero-split,
    .why-us-split,
    .about-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-card img {
        width: 100%;
        height: 250px;
    }

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

    .split-nav {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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