* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.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 -4px 20px rgba(0,0,0,0.2);
}

.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: 1.5rem;
}

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

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

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.main-header {
    background: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 1rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

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

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 3rem;
    margin-left: 8%;
    margin-top: -5%;
}

.hero-title-large {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5d6d7e;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    transform: rotate(-3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #ecf0f1;
}

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

.intro-offset {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-block-left {
    flex: 1;
    padding-left: 5%;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-block-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5d6d7e;
}

.intro-image-right {
    flex: 1;
    transform: translateY(30px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: #d5d8dc;
}

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

.services-asymmetric {
    padding: 6rem 2rem 8rem;
    background: #f8f9fa;
}

.services-title-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 10%;
}

.services-title-offset h2 {
    font-size: 3rem;
    color: #2c3e50;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 2rem);
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.card-elevated {
    transform: translateY(-20px);
}

.card-offset-down {
    transform: translateY(40px);
}

.card-offset-up {
    transform: translateY(-30px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #bdc3c7;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    color: #5d6d7e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e67e22;
}

.form-section-offset {
    padding: 8rem 2rem;
    background: linear-gradient(120deg, #2c3e50 0%, #34495e 100%);
    position: relative;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 12%;
}

.form-intro-block {
    margin-bottom: 3rem;
    color: #fff;
}

.form-intro-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.form-intro-block p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-form-styled {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    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: #e67e22;
}

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

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.trust-section-overlap {
    padding: 6rem 2rem;
    background: #fff;
    margin-top: -4rem;
    position: relative;
    z-index: 5;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-item p {
    color: #5d6d7e;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

.footer-section a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .hero-content-offset {
        margin-left: 5%;
    }

    .hero-image-overlap {
        width: 50%;
        right: 0;
    }

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

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-content-offset {
        margin: 0;
        padding: 1.5rem;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 2rem;
    }

    .intro-offset {
        flex-direction: column;
        padding: 4rem 1rem;
    }

    .intro-block-left {
        padding-left: 0;
    }

    .intro-image-right {
        transform: none;
    }

    .services-title-offset {
        padding-left: 0;
        text-align: center;
    }

    .services-title-offset h2 {
        font-size: 2rem;
    }

    .service-card {
        width: 100%;
        transform: none !important;
    }

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

    .contact-form-styled {
        padding: 2rem 1.5rem;
    }

    .trust-points {
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .header-container {
        justify-content: center;
        text-align: center;
    }
}