* {
    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.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-banner.active {
    display: flex;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #236339;
}

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #f8faf7;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

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

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

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(-30px) translateX(20px);
}

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

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

.cta-primary:hover {
    background-color: #236339;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 122, 79, 0.3);
}

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

.cta-secondary:hover {
    background-color: #2d7a4f;
    color: #ffffff;
}

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

.intro-narrow {
    flex: 2;
    max-width: 700px;
}

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

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

.intro-stats-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background-color: #f8faf7;
    padding: 28px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #666666;
}

.services-irregular {
    padding: 100px 40px;
    background-color: #ffffff;
    max-width: 1600px;
    margin: 0 auto;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header-left p {
    font-size: 18px;
    color: #666666;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.service-offset-1 {
    flex: 1 1 calc(60% - 20px);
    margin-top: 0;
}

.service-offset-2 {
    flex: 1 1 calc(40% - 20px);
    margin-top: 60px;
}

.service-offset-3 {
    flex: 1 1 calc(45% - 20px);
    margin-top: -40px;
}

.service-offset-4 {
    flex: 1 1 calc(55% - 20px);
    margin-top: 20px;
}

.service-offset-5 {
    flex: 1 1 calc(100%);
    margin-top: -20px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8ede5;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a4f;
    margin: 0 28px 16px;
}

.btn-select-service {
    margin: 0 28px 28px;
    padding: 14px 28px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #236339;
}

.form-section-diagonal {
    padding: 120px 40px;
    background-color: #f8faf7;
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.form-container-overlap {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #666666;
    margin-bottom: 40px;
}

.contact-form-modern {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-notice {
    background-color: #fff4e6;
    color: #8c5a00;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    display: none;
}

.form-notice.active {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit-form:hover {
    background-color: #236339;
}

.btn-submit-form:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.form-bg-image {
    flex: 1;
    transform: translateX(40px);
}

.form-bg-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background-color: #e8ede5;
}

.trust-section-stacked {
    padding: 100px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-wide h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.trust-content-wide > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #d5d5d5;
}

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

.feature-block {
    flex: 1;
    min-width: 280px;
}

.feature-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

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

.footer-asymmetric {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 80px 40px 40px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #999999;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

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

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #cccccc;
}

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

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: #1a1a1a;
    border-radius: 8px;
}

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

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

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

.page-hero-minimal {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    background-color: #f8faf7;
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero-minimal p {
    font-size: 19px;
    color: #666666;
}

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

.story-text-primary {
    flex: 1.2;
}

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

.story-text-primary p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.story-image-aside {
    flex: 1;
    transform: translateY(40px);
}

.story-image-aside img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8ede5;
}

.values-asymmetric {
    padding: 100px 40px;
    background-color: #f8faf7;
}

.values-header-diagonal {
    max-width: 1400px;
    margin: 0 auto 60px;
    transform: translateX(60px);
}

.values-header-diagonal h2 {
    font-size: 42px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

.value-card:nth-child(odd) {
    transform: translateY(20px);
}

.value-card:nth-child(even) {
    transform: translateY(-20px);
}

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

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

.expertise-section-wide {
    padding: 100px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.expertise-content-center {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.expertise-content-center h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.expertise-image-full {
    width: 100%;
}

.expertise-image-full img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #e8ede5;
}

.commitment-section-diagonal {
    padding: 100px 40px;
    background-color: #f8faf7;
}

.commitment-block {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 80px;
}

.commitment-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.commitment-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

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

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8ede5;
}

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

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-pricing-detail {
    display: flex;
    flex-direction: column;
    margin: 32px 0 24px;
}

.price-label {
    font-size: 14px;
    color: #666666;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2d7a4f;
}

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

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 17px;
    color: #cccccc;
    margin-bottom: 32px;
}

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

.contact-details-asymmetric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-address,
.contact-email-text,
.contact-hours {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-image-offset {
    flex: 1;
    transform: translateY(-40px);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8ede5;
}

.contact-additional-info {
    padding: 80px 40px;
    background-color: #f8faf7;
}

.info-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.info-content-centered h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.thanks-section-centered {
    padding: 140px 40px 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-confirmation {
    font-size: 17px;
    color: #2d7a4f;
    font-weight: 600;
    margin-bottom: 24px;
}

.thanks-next-steps {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8ede5;
}

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

.legal-page-content h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 15px;
    color: #666666;
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block {
        padding-right: 0;
        max-width: 100%;
    }

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

    .hero-image-overlap {
        transform: none;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-bg-image {
        transform: none;
    }

    .trust-features {
        flex-direction: column;
    }

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

    .about-story-offset {
        flex-direction: column;
        gap: 40px;
    }

    .story-image-aside {
        transform: none;
    }

    .values-header-diagonal {
        transform: none;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
        gap: 40px;
    }

    .contact-image-offset {
        transform: none;
    }

    .thanks-section-centered {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .ad-disclosure {
        margin-top: 12px;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text-block p {
        font-size: 17px;
    }

    .intro-narrow h2 {
        font-size: 32px;
    }

    .services-header-left h2 {
        font-size: 34px;
    }

    .form-intro h2 {
        font-size: 32px;
    }

    .trust-content-wide h2 {
        font-size: 34px;
    }

    .page-hero-minimal h1 {
        font-size: 38px;
    }

    .values-grid-offset {
        gap: 20px;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .value-card:nth-child(odd),
    .value-card:nth-child(even) {
        transform: none;
    }

    .commitment-block {
        padding-left: 0;
    }

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

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

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