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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #4CAF50;
    color: #fff;
}

.btn-cookie:hover {
    background: #45a049;
}

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

.btn-cookie-alt:hover {
    background: #fff;
    color: #000;
}

.header-asymmetric {
    position: relative;
    padding: 0;
}

.ad-disclosure {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 1;
    padding: 8rem 5% 4rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #495057;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: #333;
}

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

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: #fff;
}

.intro-left {
    flex: 1.2;
    padding-right: 3rem;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #495057;
}

.intro-right-image {
    flex: 1;
    background: #f0f0f0;
}

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

.services-stacked {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #495057;
    flex-grow: 1;
}

.price-tag {
    background: #4CAF50;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.offset-1 {
    flex: 1 1 calc(40% - 1rem);
    margin-left: 0;
}

.offset-2 {
    flex: 1 1 calc(35% - 1rem);
    margin-top: 3rem;
}

.offset-3 {
    flex: 1 1 calc(25% - 1rem);
}

.offset-4 {
    flex: 1 1 calc(30% - 1rem);
    margin-left: 5%;
}

.offset-5 {
    flex: 1 1 calc(38% - 1rem);
    margin-top: -2rem;
}

.offset-6 {
    flex: 1 1 calc(27% - 1rem);
    margin-top: 2rem;
}

.form-section-diagonal {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 15%;
    background: #fff;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-container-asymmetric h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container-asymmetric > p {
    margin-bottom: 2rem;
    color: #666;
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #dee2e6;
    font-size: 1rem;
    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: #4CAF50;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #4CAF50;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

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

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

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
}

.testimonial.left {
    margin-left: 0;
    margin-right: 15%;
}

.testimonial.right {
    margin-left: 15%;
    margin-right: 0;
}

.testimonial.center {
    margin-left: 10%;
    margin-right: 10%;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #495057;
}

.testimonial .author {
    font-weight: 600;
    color: #1a1a1a;
    font-style: normal;
}

.cta-section-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    gap: 4rem;
}

.cta-left-block {
    flex: 1;
}

.cta-left-block h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-left-block p {
    font-size: 1.2rem;
    color: #ccc;
}

.cta-right-action {
    flex: 0.5;
    display: flex;
    justify-content: flex-end;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #45a049;
    transform: scale(1.05);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-block h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #4CAF50;
}

.disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #888;
    max-width: 900px;
}

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

    .hero-image-diagonal {
        clip-path: none;
        min-height: 400px;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100% !important;
        margin: 0 !important;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .cta-section-split {
        flex-direction: column;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}