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

a {
    color: #3d6b50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d5a3d;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a3d;
}

.ad-notice {
    font-size: 0.75rem;
    color: #6b8577;
    padding: 4px 12px;
    background-color: #f0f5f2;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    margin-top: 80px;
}

.hero-offset-block {
    width: 45%;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px;
    background-color: #f9fbfa;
}

.hero-text-container h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #2c3e38;
}

.hero-text-container p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a6156;
}

.hero-image-offset {
    width: 55%;
    position: relative;
    overflow: hidden;
}

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

.cta-inline {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3d6b50;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background-color: #2d5a3d;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-offset {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.intro-narrow {
    width: 50%;
    padding: 100px 80px 100px 120px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #2c3e38;
}

.intro-narrow p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a6156;
}

.intro-image-block {
    width: 50%;
    overflow: hidden;
}

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

.services-asymmetric {
    padding: 120px 80px;
    background-color: #f4f7f5;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #5a7266;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-large {
    width: calc(60% - 15px);
}

.card-medium {
    width: calc(55% - 15px);
}

.card-small {
    width: calc(40% - 15px);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

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

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e38;
}

.card-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a6156;
}

.link-arrow {
    color: #3d6b50;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    color: #2d5a3d;
}

.cta-section-offset {
    padding: 0 80px 120px 80px;
}

.cta-block-irregular {
    padding: 80px 100px;
    border-radius: 16px;
    color: #ffffff;
    margin-left: 120px;
}

.cta-block-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-block-irregular p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #3d6b50;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #f0f5f2;
    color: #2d5a3d;
    transform: translateY(-2px);
}

.evidence-section {
    padding: 120px 80px;
    background-color: #ffffff;
}

.evidence-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.evidence-text {
    width: 45%;
}

.evidence-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e38;
}

.evidence-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a6156;
}

.evidence-image {
    width: 55%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

.form-section-asymmetric {
    display: flex;
    min-height: 800px;
    background-color: #f9fbfa;
}

.form-container-offset {
    width: 55%;
    padding: 100px 80px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e38;
}

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #5a7266;
}

.contact-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #d4e0d7;
    border-radius: 8px;
    font-size: 1rem;
    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: #3d6b50;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #3d6b50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-side-image {
    width: 45%;
    overflow: hidden;
}

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

.footer-asymmetric {
    background-color: #2c3e38;
    color: #e8f0eb;
    padding: 80px 80px 30px 80px;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8cdc0;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b8cdc0;
}

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

.footer-disclaimer {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b8cdc0;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #8fa99a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 56, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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 {
    color: #e8f0eb;
    font-size: 1rem;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 12px 30px;
    background-color: #ffffff;
    color: #2d5a3d;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-hero-offset {
    margin-top: 140px;
    padding: 80px 80px 60px 120px;
    background-color: #f4f7f5;
}

.page-hero-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2c3e38;
    max-width: 900px;
}

.page-hero-offset p {
    font-size: 1.3rem;
    color: #5a7266;
    max-width: 700px;
}

.service-detail-asymmetric {
    padding: 80px 0;
}

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

.service-content-irregular {
    display: flex;
    min-height: 600px;
}

.service-text {
    width: 50%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e38;
}

.service-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a6156;
}

.service-benefits {
    list-style: none;
    margin: 30px 0;
}

.service-benefits li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.05rem;
    color: #4a6156;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3d6b50;
    font-weight: bold;
}

.pricing-block {
    margin-top: 30px;
    padding: 25px;
    background-color: #f4f7f5;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    font-size: 0.95rem;
    color: #5a7266;
    margin-right: 10px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
}

.service-image {
    width: 50%;
    overflow: hidden;
}

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

.cta-services {
    padding: 100px 80px;
    text-align: center;
    background-color: #f9fbfa;
}

.cta-services h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #5a7266;
}

.about-hero-offset {
    margin-top: 100px;
    display: flex;
    min-height: 600px;
}

.about-hero-content {
    width: 50%;
    padding: 100px 80px;
    background-color: #f4f7f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c3e38;
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a6156;
}

.about-hero-image {
    width: 50%;
    overflow: hidden;
}

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

.about-story {
    padding: 100px 80px;
    display: flex;
    gap: 60px;
}

.story-block-left {
    width: 55%;
}

.story-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e38;
}

.story-block-left p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a6156;
}

.story-block-right {
    width: 45%;
    padding: 50px;
    border-radius: 12px;
}

.story-block-right h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e38;
}

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

.story-list li {
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
    font-size: 1.05rem;
    color: #4a6156;
}

.story-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3d6b50;
    font-weight: bold;
}

.about-approach {
    padding: 100px 80px;
    background-color: #f9fbfa;
}

.about-approach h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e38;
}

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

.approach-item {
    width: calc(33.333% - 27px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4e0d7;
    margin-bottom: 15px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e38;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a7266;
}

.about-team {
    padding: 100px 80px;
}

.about-team h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #2c3e38;
}

.team-description {
    max-width: 800px;
    margin-bottom: 60px;
}

.team-description p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a6156;
}

.team-image-block {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 100px;
}

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

.about-values {
    padding: 100px 80px;
    background-color: #f4f7f5;
}

.about-values h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e38;
}

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

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

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a6156;
}

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

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #5a7266;
}

.contact-hero {
    margin-top: 140px;
    padding: 80px 80px 60px 80px;
    background-color: #f4f7f5;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2c3e38;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #5a7266;
}

.contact-main {
    padding: 100px 80px;
}

.contact-info-blocks {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-block {
    flex: 1;
    padding: 50px;
    background-color: #f9fbfa;
    border-radius: 12px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a6156;
    margin-bottom: 15px;
}

.email-display {
    font-weight: 600;
    color: #2c3e38;
}

.email-note,
.hours-note {
    font-size: 0.95rem;
    color: #6b8577;
}

.contact-image-section {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-additional {
    padding: 80px;
    background-color: #f4f7f5;
    margin: 80px 0;
    border-radius: 12px;
}

.contact-additional-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e38;
}

.contact-additional-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a6156;
}

.contact-checklist {
    list-style: none;
    margin: 30px 0;
}

.contact-checklist li {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.05rem;
    color: #4a6156;
}

.contact-checklist li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #3d6b50;
}

.contact-cta {
    padding: 100px 80px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #5a7266;
}

.thanks-container {
    margin-top: 100px;
    display: flex;
    min-height: 700px;
}

.thanks-content {
    width: 60%;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #3d6b50;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4a6156;
}

.thanks-service-info {
    padding: 30px;
    background-color: #f4f7f5;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #4a6156;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e38;
}

.next-steps-list {
    list-style: none;
    margin-bottom: 40px;
}

.next-steps-list li {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.05rem;
    color: #4a6156;
}

.next-steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3d6b50;
    font-weight: bold;
}

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

.thanks-image {
    width: 40%;
    overflow: hidden;
}

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

.legal-page {
    margin-top: 140px;
    padding: 80px 120px 100px 120px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2c3e38;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6b8577;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e38;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3d6b50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a6156;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a6156;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #f4f7f5;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e38;
    border-bottom: 2px solid #d4e0d7;
}

.cookies-table td {
    padding: 15px;
    color: #4a6156;
    border-bottom: 1px solid #e8f0eb;
}

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-block,
    .hero-image-offset {
        width: 100%;
    }

    .service-cards-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .intro-offset,
    .evidence-grid,
    .form-section-asymmetric,
    .service-content-irregular,
    .about-hero-offset,
    .about-story,
    .contact-info-blocks,
    .thanks-container {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-image-block,
    .evidence-text,
    .evidence-image,
    .form-container-offset,
    .form-side-image,
    .service-text,
    .service-image,
    .about-hero-content,
    .about-hero-image,
    .story-block-left,
    .story-block-right,
    .contact-block,
    .thanks-content,
    .thanks-image {
        width: 100%;
    }

    .hero-text-container h1,
    .page-hero-offset h1 {
        font-size: 2.5rem;
    }

    .approach-item,
    .value-card {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}