* {
    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(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.btn-accept {
    background: #2d7a3e;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f9f9f9;
}

.main-nav {
    display: flex;
    gap: 32px;
}

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

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

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

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 60px;
}

.hero-text-block h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 36px;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 700px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #2d7a3e;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    padding: 16px 42px;
    background: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #236330;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
}

.story-hook {
    padding: 120px 40px;
    background: #ffffff;
}

.story-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
    padding-left: 40px;
}

.story-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px;
}

.story-visual {
    flex: 0 0 480px;
    transform: translateY(-40px);
}

.story-visual img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.problem-amplification {
    padding: 100px 40px;
    background: #f8f8f8;
}

.problem-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.problem-card.offset-middle {
    transform: translateY(0);
}

.problem-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.insight-reveal {
    padding: 120px 40px;
    background: #ffffff;
}

.insight-wrapper-irregular {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.insight-image-float {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(2deg);
    width: 520px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background-color: #2d7a3e;
}

.insight-image-float img {
    width: 100%;
    height: 100%;
}

.insight-content-overlap {
    margin-left: 540px;
    padding: 60px 0 60px 60px;
}

.insight-content-overlap h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.insight-content-overlap p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px;
}

.insight-content-overlap a {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
}

.insight-content-overlap a:hover {
    text-decoration: underline;
}

.trust-building {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
}

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

.trust-container-stacked h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-blocks-irregular {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-block {
    flex: 1;
    min-width: 300px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-block.offset-right {
    transform: translateY(40px);
}

.trust-block h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #ffffff;
}

.trust-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #d0d0d0;
}

.testimonials-scattered {
    padding: 120px 40px;
    background: #f5f5f5;
}

.testimonials-scattered h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.testimonials-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

.testimonial-card.offset-left {
    align-self: flex-start;
    margin-left: 40px;
}

.testimonial-card.offset-right {
    align-self: flex-end;
    margin-right: 40px;
}

.testimonial-card.offset-center {
    align-self: center;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-style: italic;
}

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

.benefits-reveal {
    padding: 120px 40px;
    background: #ffffff;
}

.benefits-overlap-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-visual {
    flex: 0 0 500px;
    transform: rotate(-2deg);
}

.benefits-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.benefits-content-float {
    flex: 1;
}

.benefits-content-float h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 20px;
}

.services-preview {
    padding: 120px 40px;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.services-intro-offset {
    max-width: 900px;
    margin: 0 auto 80px;
    padding-left: 80px;
}

.services-intro-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.offset-top {
    transform: translateY(-20px);
}

.service-card.offset-bottom {
    transform: translateY(20px);
}

.service-card img {
    width: 100%;
    height: 240px;
}

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 24px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    gap: 8px;
    padding: 0 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-features span {
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #3a3a3a;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a3e;
    padding: 0 24px;
    margin-bottom: 24px;
}

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #2d7a3e;
}

.inquiry-section {
    padding: 120px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.form-intro h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 48px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 16px;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #236330;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
}

.disclaimer-section {
    padding: 80px 40px;
    background: #f8f8f8;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #2d7a3e;
    border-radius: 6px;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #808080;
}

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 550px;
        height: 400px;
        right: -80px;
    }

    .insight-image-float {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 40px;
    }

    .insight-content-overlap {
        margin-left: 0;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero-asymmetric {
        min-height: auto;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 42px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .story-container-offset {
        flex-direction: column;
    }

    .story-text {
        padding-left: 0;
    }

    .story-visual {
        flex: 1;
        transform: none;
    }

    .benefits-overlap-layout {
        flex-direction: column;
    }

    .benefits-visual {
        transform: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}