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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2c5f2d;
    color: #fff;
}

.btn-accept:hover {
    background: #234a24;
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-items {
    display: flex;
    gap: 2rem;
}

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

.nav-items a:hover {
    color: #2c5f2d;
}

.ad-disclosure {
    position: absolute;
    top: 0;
    right: 5%;
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    color: #666;
    border-radius: 0 0 4px 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-content-offset {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
}

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    margin-left: 8%;
    margin-top: -2rem;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #444;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #234a24;
    transform: translateY(-2px);
}

.hero-image-overlay {
    position: absolute;
    right: 0;
    top: 10%;
    width: 60%;
    height: 80%;
    z-index: 1;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    margin-top: 3rem;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-visual {
    flex: 1;
    position: relative;
    margin-top: -4rem;
    background: #e8e8e8;
}

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

.services-asymmetric {
    background: #fff;
    padding: 5rem 5%;
}

.services-header-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 320px;
    background: #fafafa;
    position: relative;
    transition: all 0.3s ease;
}

.service-card.offset-top {
    margin-top: 3rem;
}

.service-card.offset-bottom {
    margin-bottom: 3rem;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 280px;
    background: #ddd;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

.service-price {
    margin: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 2rem;
    width: calc(100% - 3rem);
    background: #2c5f2d;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #234a24;
}

.select-service.selected {
    background: #1a3818;
}

.form-section-offset {
    background: #f0f0f0;
    padding: 5rem 5%;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 15%;
    background: #fff;
    padding: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    margin-bottom: 2rem;
    color: #666;
}

#selectedServiceDisplay {
    font-weight: 700;
    color: #2c5f2d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234a24;
}

.trust-section {
    padding: 6rem 5%;
    background: #fff;
}

.trust-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
    max-width: 550px;
    margin-left: 5%;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.trust-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-asymmetric {
    background: #2a2a2a;
    color: #ccc;
    padding: 3rem 5% 1rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #2c5f2d;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
}

.about-hero-offset {
    padding: 5rem 5% 3rem;
    background: #f5f5f5;
    margin-left: 10%;
}

.about-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block-left {
    flex: 1;
    background: #e8e8e8;
}

.story-block-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text-right {
    flex: 1;
    max-width: 550px;
}

.story-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-text-right p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-irregular {
    padding: 5rem 5%;
    background: #fff;
}

.values-irregular h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #fafafa;
}

.value-card.offset-card {
    margin-top: 2rem;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.team-section-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-text-offset {
    flex: 1;
    max-width: 550px;
}

.team-text-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-text-offset p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-section {
    padding: 5rem 5%;
    background: #f5f5f5;
}

.approach-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.approach-steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-block {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    padding: 2rem;
    background: #fff;
}

.step-block.offset-step {
    margin-top: 2rem;
}

.step-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.services-hero {
    padding: 5rem 5%;
    background: #f5f5f5;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.service-detail-asymmetric {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-visual-left,
.service-visual-right {
    flex: 1;
    background: #e8e8e8;
}

.service-visual-left img,
.service-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-content-right,
.service-content-left {
    flex: 1;
    max-width: 550px;
}

.service-content-right h2,
.service-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-content-right p,
.service-content-left p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 2rem 0 1.5rem;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #234a24;
}

.services-cta-section {
    padding: 5rem 5%;
    background: #f0f0f0;
}

.cta-block-offset {
    max-width: 700px;
    margin-left: 15%;
    padding: 3rem;
    background: #fff;
    text-align: center;
}

.cta-block-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero {
    padding: 5rem 5%;
    background: #f5f5f5;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 5%;
}

.contact-block-offset {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    max-width: 500px;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

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

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

.contact-additional {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 5%;
}

.additional-info-irregular {
    background: #fafafa;
    padding: 3rem;
    margin-left: 10%;
}

.additional-info-irregular h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.additional-info-irregular p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.map-section {
    padding: 3rem 5%;
    background: #f5f5f5;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: #e8e8e8;
    text-align: center;
}

.thanks-section {
    padding: 6rem 5%;
    background: #f5f5f5;
    min-height: 60vh;
}

.thanks-content-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content-asymmetric h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.thanks-content-asymmetric p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f0f0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2c5f2d;
    color: #fff;
}

.btn-primary:hover {
    background: #234a24;
}

.btn-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

.next-steps-section {
    padding: 5rem 5%;
    background: #fff;
}

.next-steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #fafafa;
}

.step-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-page {
    padding: 4rem 5%;
    background: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

    .hero-image-overlay {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

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

    .intro-offset,
    .trust-content-irregular,
    .about-story-asymmetric,
    .team-section-asymmetric,
    .service-detail-asymmetric,
    .contact-block-offset {
        flex-direction: column;
    }

    .nav-items {
        gap: 1rem;
    }
}

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

    .services-grid-irregular,
    .values-grid-offset,
    .approach-steps-offset,
    .steps-grid {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .step-block {
        flex: 1 1 100%;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

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

    .nav-items {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
}