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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-offset {
    padding: 20px 60px 20px 120px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 40px;
}

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

.nav-links a:hover {
    color: #e74c3c;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    padding: 80px 40px 80px 120px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.hero-text-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-offset h1 {
    font-size: 92px;
    font-weight: 900;
    line-height: 0.95;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 21px;
    color: #555;
    max-width: 480px;
    margin-top: 20px;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: 40px;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #e8e8e8;
}

.intro-irregular {
    display: flex;
    padding: 120px 80px 120px 180px;
    gap: 100px;
    align-items: center;
    background: #fff;
}

.intro-block-left {
    flex: 1;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
}

.intro-block-right {
    flex: 0.8;
    transform: translateY(-40px);
}

.intro-block-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: #e8e8e8;
}

.services-offset {
    padding: 140px 60px 140px 80px;
    background: #f9f9f9;
}

.services-header-right {
    text-align: right;
    margin-bottom: 80px;
    padding-right: 60px;
}

.services-header-right h2 {
    font-size: 56px;
    color: #1a1a1a;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 80px;
}

.card-offset-5 {
    margin-top: 40px;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin: 0 25px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 25px 20px;
}

.cta-select {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0 25px 25px;
    border-radius: 4px;
}

.cta-select:hover {
    background: #c0392b;
}

.form-section-diagonal {
    padding: 120px 100px 120px 200px;
    background: linear-gradient(165deg, #2c3e50 0%, #34495e 100%);
    position: relative;
}

.form-container {
    max-width: 700px;
}

.form-section-diagonal h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.form-intro {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    color: #ecf0f1;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: rgba(255,255,255,0.15);
}

.form-group select option {
    background: #34495e;
    color: #fff;
}

.btn-submit {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    margin-top: 10px;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #c0392b;
}

.process-creative {
    padding: 100px 80px 100px 120px;
    background: #fff;
}

.process-overlap {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.process-text {
    flex: 1.2;
}

.process-text h2 {
    font-size: 52px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-step {
    margin-bottom: 40px;
    padding-left: 80px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 900;
    color: #e74c3c;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.process-image {
    flex: 0.8;
    transform: translateX(40px);
}

.process-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    background-color: #e8e8e8;
}

.testimonials-scattered {
    padding: 140px 80px;
    background: #f9f9f9;
    position: relative;
}

.testimonials-title {
    font-size: 56px;
    text-align: center;
    margin-bottom: 100px;
    color: #1a1a1a;
}

.testimonial-blocks {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 500px;
}

.testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: absolute;
    max-width: 420px;
}

.testimonial-pos-1 {
    top: 0;
    left: 0;
}

.testimonial-pos-2 {
    top: 120px;
    right: 100px;
}

.testimonial-pos-3 {
    top: 280px;
    left: 180px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #e74c3c;
}

.footer-irregular {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 80px 60px 40px 120px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #c0392b;
}

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-text-offset h1 {
        font-size: 64px;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 40px;
    }

    .intro-irregular {
        flex-direction: column;
        padding: 80px 30px;
        gap: 50px;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        margin-top: 0 !important;
    }

    .process-overlap {
        flex-direction: column;
    }

    .testimonial-blocks {
        position: static;
    }

    .testimonial {
        position: static;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
