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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-visual {
    flex: 1;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

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

.features-asymmetric {
    padding: 4rem 5%;
}

.feature-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.feature-block img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background: #e8e8e8;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.feature-block-reverse {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-direction: row-reverse;
}

.feature-block-reverse img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background: #e8e8e8;
}

.services-showcase {
    padding: 5rem 5%;
    background: #fff;
}

.services-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    transition: all 0.3s ease;
}

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

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

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

.form-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.repair-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

.repair-form input:focus,
.repair-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.repair-form input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.trust-section {
    padding: 5rem 5%;
    background: #fff;
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-split {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: #2c3e50;
}

.footer-split {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 5%;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .feature-block,
    .feature-block-reverse {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .testimonial-card {
        width: 100%;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .service-card {
        width: 100%;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}