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

.ad-disclosure {
    background: #f8f8f8;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #666;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fafafa;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    padding: 80px;
    max-width: 600px;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.hero-subtext {
    font-size: 20px;
    color: #555;
    font-weight: 300;
}

.hero-image-layer {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    transform: rotate(3deg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

.intro-block-left {
    flex: 1.2;
}

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 600;
    line-height: 1.3;
}

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

.intro-block-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.intro-block-right img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.insight-layered {
    position: relative;
    padding: 140px 80px;
    margin: 80px 0;
}

.insight-background {
    position: absolute;
    left: 10%;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    z-index: 0;
    transform: skewY(-2deg);
}

.insight-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.insight-content h2 {
    font-size: 48px;
    margin-bottom: 32px;
    font-weight: 600;
}

.insight-content p {
    font-size: 19px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-cards-stacked {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-cards-stacked h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 600;
}

.card-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.card-overlap {
    background: white;
    padding: 40px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.card-1 {
    margin-left: 0;
}

.card-2 {
    margin-left: 60px;
}

.card-3 {
    margin-left: 120px;
}

.card-overlap h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 600;
}

.card-overlap p {
    font-size: 17px;
    color: #555;
}

.services-asymmetric {
    padding: 120px 60px;
    background: #fafafa;
}

.services-intro-block {
    max-width: 700px;
    margin-bottom: 80px;
}

.services-intro-block h2 {
    font-size: 50px;
    margin-bottom: 24px;
    font-weight: 600;
}

.services-intro-block p {
    font-size: 19px;
    color: #555;
}

.service-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
}

.service-item {
    background: white;
    padding: 0;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-large {
    flex: 1 1 calc(60% - 15px);
}

.service-medium {
    flex: 1 1 calc(40% - 15px);
}

.service-small {
    flex: 1 1 calc(35% - 15px);
}

.service-wide {
    flex: 1 1 calc(65% - 15px);
}

.service-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.service-item h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    color: #555;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 24px 20px;
}

.cta-service {
    background: #000;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    cursor: pointer;
    margin: 0 24px 24px;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #333;
}

.testimonial-offset {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-visual {
    flex: 1;
    position: relative;
    margin-top: 40px;
}

.testimonial-visual img {
    width: 100%;
    height: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    flex: 1.3;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: #222;
    font-style: italic;
    padding: 40px;
    background: #f8f8f8;
    border-left: 4px solid #000;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.form-section-integrated {
    padding: 120px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

#selected-service-display {
    font-weight: 600;
    color: #000;
}

.form-asymmetric {
    background: white;
    padding: 50px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-left: 40px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

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

.footer-layered {
    background: #1a1a1a;
    color: white;
    padding: 80px 60px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 60px;
    gap: 60px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-block p {
    color: #aaa;
    font-size: 15px;
}

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

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: white;
}

.disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background: white;
    color: black;
}

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

@media (max-width: 1024px) {
    .hero-content-offset h1 {
        font-size: 52px;
    }

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

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

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

    .testimonial-offset {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
    }

    .nav-right {
        gap: 15px;
    }

    .hero-content-offset {
        padding: 40px 20px;
        margin-left: 0;
    }

    .hero-content-offset h1 {
        font-size: 38px;
    }

    .hero-image-layer {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .form-asymmetric {
        margin-left: 0;
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
    }
}