* {
    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: #2c3e50;
    background-color: #fafafa;
}

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

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2d5016;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding: 80px 40px 40px 40px;
}

.hero-content-offset {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5016;
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f3810;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-left: -100px;
    margin-top: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-offset {
    display: flex;
    padding: 120px 40px;
    gap: 80px;
    align-items: center;
}

.intro-text-narrow {
    flex: 1.5;
    padding-left: 100px;
}

.intro-text-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-visual-aside {
    flex: 1;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(-50px);
}

.intro-visual-aside img {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-block-irregular {
    padding: 80px 40px;
    background-color: #f8f9fa;
    margin: 60px 0;
    margin-left: 120px;
    border-radius: 0 16px 16px 0;
}

.trust-content {
    max-width: 700px;
    padding-left: 60px;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5016;
}

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

.trust-content sup a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
}

.services-asymmetric {
    padding: 100px 40px;
}

.section-header-offset {
    margin-left: 180px;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 20px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 60px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

.select-service {
    background-color: #2d5016;
    color: white;
    border: none;
    padding: 14px 28px;
    margin: 0 25px 25px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1f3810;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: #f0f4f0;
    margin-right: 100px;
    border-radius: 16px 0 0 16px;
}

.form-wrapper {
    max-width: 600px;
    margin-left: 120px;
}

.form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-wrapper > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2d5016;
}

.btn-submit {
    background-color: #2d5016;
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1f3810;
}

.values-irregular {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

.values-content {
    flex: 1.5;
}

.values-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2d5016;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.values-visual {
    flex: 1;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(40px);
}

.values-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 80px 40px 30px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    padding-left: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer-col a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-references {
    padding: 30px 60px;
    background-color: #242424;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

.footer-references a {
    color: #5a8c6f;
    text-decoration: none;
}

.footer-disclaimer {
    padding: 30px 60px;
    background-color: #242424;
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #2d5016;
    color: white;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #555;
    color: white;
}

.btn-reject:hover {
    opacity: 0.9;
}

.about-hero-asymmetric {
    padding: 120px 40px 80px 180px;
    background-color: #f0f4f0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
}

.story-offset {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

.story-visual {
    flex: 1;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    transform: translateX(-40px);
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.story-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.mission-irregular {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    background-color: #fafafa;
    align-items: center;
}

.mission-content {
    flex: 1.5;
    padding-right: 40px;
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d5016;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.mission-highlight {
    flex: 1;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(-60px);
}

.mission-highlight img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5016;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-offset {
    padding: 100px 40px 100px 160px;
    background-color: #f0f4f0;
}

.team-text {
    max-width: 800px;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.services-header-offset {
    padding: 120px 40px 60px 180px;
    background-color: #f0f4f0;
}

.services-header-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 22px;
    color: #666;
}

.services-detail-section {
    padding: 80px 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail-card.offset-left {
    padding-left: 80px;
}

.service-detail-card.offset-right {
    padding-right: 80px;
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2d5016;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.price-detail {
    font-size: 32px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 25px;
}

.cta-service {
    display: inline-block;
    background-color: #2d5016;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #1f3810;
}

.cta-bottom-section {
    padding: 80px 40px;
    background-color: #1a1a1a;
    text-align: center;
    color: white;
}

.cta-bottom-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-bottom-section p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #d0d0d0;
}

.contact-hero {
    padding: 120px 40px 60px 160px;
    background-color: #f0f4f0;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 22px;
    color: #666;
}

.contact-content-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding-left: 60px;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2d5016;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.info-note {
    margin-top: 50px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5016;
    border-radius: 8px;
}

.info-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.info-note a {
    color: #2d5016;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(40px);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f0f4f0;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2d5016;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.thanks-content a {
    color: #2d5016;
    text-decoration: underline;
}

.thanks-content .cta-primary {
    margin-top: 40px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d5016;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #2d5016;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        margin: 20px;
    }

    .hero-asymmetric,
    .intro-offset,
    .values-irregular,
    .story-offset,
    .mission-irregular,
    .contact-content-asymmetric {
        flex-direction: column;
    }

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

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

    .service-detail-card {
        flex-direction: column !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

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

    .approach-grid {
        flex-direction: column;
    }

    .hero-content-offset h1,
    .about-hero-content h1,
    .services-header-offset h1,
    .contact-hero h1 {
        font-size: 40px;
    }

    .about-hero-asymmetric,
    .services-header-offset,
    .contact-hero,
    .team-offset {
        padding-left: 40px;
    }

    .section-header-offset {
        margin-left: 40px;
    }
}