* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    min-width: 300px;
}

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

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

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

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

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

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

.header-split {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #1e40af;
}

.ad-label {
    background: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 60px 60px 60px 40px;
}

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

.hero-left p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.hero-right {
    flex: 1;
    background: #f3f4f6;
}

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

.split-intro {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    align-items: center;
    gap: 60px;
}

.split-image-left {
    flex: 1;
    background: #e5e7eb;
}

.split-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.split-content-right {
    flex: 1;
}

.split-content-right h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.services-grid {
    background: #f9fafb;
    padding: 80px 40px;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #6b7280;
}

.service-cards-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 340px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 240px;
    background: #e5e7eb;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.card-content p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 28px;
    color: #1e40af;
    font-weight: 700;
    margin-bottom: 16px;
}

.select-service {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.split-form-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.form-content-left {
    flex: 1;
}

.form-content-left h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-content-left p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.form-benefits li {
    font-size: 16px;
    color: #374151;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

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

.form-container-right {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.trust-content-right {
    flex: 1;
}

.trust-content-right h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 32px;
    font-weight: 700;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item h4 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.trust-image-left {
    flex: 1;
    background: #e5e7eb;
}

.trust-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .split-form-section,
    .trust-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .split-form-section {
        gap: 40px;
    }
}