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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6749;
}

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

.btn-reject:hover {
    background-color: #333333;
}

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 0;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #888888;
    font-style: italic;
    padding: 6px 14px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f9f9f9;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: 80px;
    margin-top: -60px;
}

.hero-text-block {
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555555;
}

.cta-hero {
    display: inline-block;
    padding: 16px 38px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #3d6749;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 58%;
    height: 90%;
    background-color: #e8e8e8;
}

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

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

.intro-narrow {
    flex: 1;
    max-width: 580px;
    padding-top: 40px;
}

.intro-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

.intro-visual-element {
    flex: 1;
    background-color: #e8e8e8;
    margin-top: -40px;
}

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

.services-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 12px;
}

.services-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-irregular-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card.offset-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 480px;
}

.service-card.offset-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 480px;
}

.service-card.offset-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
}

.service-card.offset-left-minor {
    margin-left: 80px;
    margin-right: auto;
    max-width: 460px;
}

.service-card.offset-right-minor {
    margin-left: auto;
    margin-right: 80px;
    max-width: 460px;
}

.service-card.offset-center-low {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 28px 32px 16px 32px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin: 0 32px 20px 32px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin: 0 32px 32px 32px;
}

.services-cta-inline {
    text-align: center;
    margin-top: 60px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.philosophy-overlap {
    display: flex;
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 40px;
    gap: 100px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
    max-width: 560px;
}

.philosophy-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.philosophy-image-offset {
    flex: 1;
    background-color: #e8e8e8;
    margin-top: -80px;
}

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

.contact-form-section {
    background-color: #f5f5f5;
    padding: 100px 40px;
}

.form-container-asymmetric {
    max-width: 680px;
    margin-left: 180px;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    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: #4a7c59;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #3d6749;
    transform: translateY(-2px);
}

.trust-indicators {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 80px 40px 40px 40px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaaaaa;
}

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

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

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

.footer-section ul li a:hover {
    color: #4a7c59;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background-color: #222222;
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

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

.page-hero-offset {
    background-color: #f5f5f5;
    padding: 120px 40px 80px 80px;
}

.page-hero-content h1 {
    font-size: 52px;
    max-width: 800px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.about-story {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
}

.story-block-left {
    flex: 1;
    max-width: 600px;
}

.story-block-left h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-block-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.story-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.approach-asymmetric {
    max-width: 720px;
    margin: 120px auto 120px 120px;
    padding: 0 40px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.team-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.team-layout {
    max-width: 800px;
    margin: 0 auto;
}

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

.values-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 340px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.cta-about {
    text-align: center;
    padding: 100px 40px;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #3d6749;
    transform: translateY(-2px);
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.service-detail-block.offset-pattern-1 {
    padding-left: 0;
}

.service-detail-block.offset-pattern-2 {
    padding-right: 0;
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
}

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

.service-detail-content {
    flex: 1;
    max-width: 560px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a7c59;
    margin: 28px 0;
}

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

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

.services-approach {
    background-color: #f5f5f5;
    padding: 80px 40px;
}

.approach-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.contact-info-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 100px;
}

.contact-details-offset {
    flex: 1;
    max-width: 560px;
    padding-top: 40px;
}

.contact-details-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.contact-approach {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.approach-text h2 {
    font-size: 34px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6749;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555555;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555555;
}

.legal-content a {
    color: #4a7c59;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #3d6749;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 40px;
        margin-top: 60px;
        max-width: 100%;
    }

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

    .intro-offset,
    .philosophy-overlap,
    .about-story,
    .contact-info-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-block {
        flex-direction: column !important;
        gap: 40px;
    }

    .values-grid {
        flex-direction: column;
        align-items: center;
    }

    .form-container-asymmetric {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .services-irregular-grid .service-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100%;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}