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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-content-offset {
    max-width: 520px;
    z-index: 2;
    position: relative;
    padding-right: 60px;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a3a2b;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 19px;
    color: #4a5a4d;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-image-overlap {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 720px;
    height: 520px;
    z-index: 1;
}

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

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

.cta-primary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

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

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

.intro-offset {
    display: flex;
    padding: 120px 80px;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.intro-narrow {
    flex: 1;
    max-width: 560px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a3a2b;
    line-height: 1.2;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
}

.intro-image-side {
    flex: 1;
    position: relative;
    margin-left: -40px;
}

.intro-image-side img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.services-stacked {
    padding: 100px 80px;
    background-color: #f9faf8;
}

.section-title-left {
    font-size: 46px;
    margin-bottom: 60px;
    color: #1a3a2b;
    font-weight: 700;
    max-width: 600px;
}

.service-card-offset {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card-left {
    flex-direction: row;
}

.service-card-right {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a3a2b;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-image {
    flex: 0 0 340px;
    background-color: #e8ede9;
}

.service-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #2d5a3d;
    margin: 20px 0;
}

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

.select-service:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 90, 61, 0.25);
}

.why-us-split {
    display: flex;
    gap: 80px;
    padding: 100px 80px;
    background-color: #ffffff;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a3a2b;
    font-weight: 700;
}

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

.why-list li {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 20px;
}

.why-image {
    flex: 1;
    background-color: #e8ede9;
}

.why-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
}

.form-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #e8f2eb 0%, #d4e6d8 100%);
}

.form-container-asymmetric {
    max-width: 620px;
    margin: 0 0 0 120px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a3a2b;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.selected-service-display {
    background-color: #e8f2eb;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #2d5a3d;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    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: #2d5a3d;
}

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

.btn-submit:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

.disclaimer-section {
    padding: 60px 80px;
    background-color: #f5f5f5;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.7;
    text-align: center;
}

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

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

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

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

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

.footer-col ul li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d4a38;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #234a31;
}

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

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

.page-hero-minimal {
    padding: 100px 80px 60px;
    background-color: #f4f6f3;
    text-align: center;
}

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

.hero-lead {
    font-size: 20px;
    color: #4a5a4d;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 80px;
    background-color: #ffffff;
}

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

.story-block-reverse {
    flex-direction: row-reverse;
}

.story-block img {
    flex: 0 0 480px;
    width: 480px;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8ede9;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a2b;
    font-weight: 700;
}

.story-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-section {
    padding: 80px 80px;
    background-color: #f9faf8;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a2b;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 0 300px;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e8ede9;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #1a3a2b;
    font-weight: 700;
}

.team-role {
    font-size: 14px;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.cta-section-inline {
    padding: 80px 80px;
    background-color: #2d5a3d;
    text-align: center;
}

.cta-section-inline h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section-inline p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.cta-section-inline .cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-section-inline .cta-secondary:hover {
    background-color: #ffffff;
    color: #2d5a3d;
}

.services-detailed {
    padding: 80px 80px;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #f9faf8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-highlight {
    border: 3px solid #2d5a3d;
}

.service-detail-header {
    width: 100%;
    height: 320px;
    background-color: #e8ede9;
}

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

.service-detail-body {
    padding: 40px;
}

.service-badge {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-body h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a2b;
    font-weight: 700;
}

.service-detail-body p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-detail-body ul {
    margin: 20px 0 30px 20px;
}

.service-detail-body ul li {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 30px 0;
}

.price-label {
    font-size: 16px;
    color: #5a5a5a;
    font-weight: 600;
}

.price-value {
    font-size: 36px;
    color: #2d5a3d;
    font-weight: 800;
}

.price-note {
    font-size: 14px;
    color: #2d5a3d;
    margin-left: auto;
}

.contact-layout {
    padding: 80px 80px;
    background-color: #ffffff;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a3a2b;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2d5a3d;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
}

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

.contact-map-placeholder {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8ede9;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(45, 90, 61, 0.9);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

.contact-cta-section {
    padding: 80px 80px;
    background-color: #f4f6f3;
}

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

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a3a2b;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 28px;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 44px;
    color: #1a3a2b;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: #e8f2eb;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-service-info p {
    font-size: 16px;
    color: #2d5a3d;
    margin-bottom: 6px;
}

.thanks-next-steps {
    background-color: #f9faf8;
    padding: 36px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    color: #1a3a2b;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-next-steps ol {
    margin-left: 20px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 80px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 44px;
    color: #1a3a2b;
    margin-bottom: 24px;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9faf8;
    border-left: 4px solid #2d5a3d;
}

.legal-container h2 {
    font-size: 28px;
    color: #1a3a2b;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-container ul,
.legal-container ol {
    margin: 16px 0 20px 32px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2d5a3d;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #234a31;
}

.legal-update {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
}

@media (max-width: 1024px) {
    .nav-container,
    .hero-asymmetric,
    .intro-offset,
    .services-stacked,
    .why-us-split,
    .form-section,
    .footer-asymmetric,
    .about-story,
    .team-section,
    .cta-section-inline,
    .services-detailed,
    .contact-layout,
    .contact-cta-section,
    .thanks-section,
    .legal-page {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content-offset h1 {
        font-size: 46px;
    }

    .hero-image-overlap {
        width: 560px;
        height: 400px;
    }

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

    .service-card-offset,
    .story-block {
        flex-direction: column !important;
        gap: 40px;
    }

    .service-image,
    .story-block img {
        flex: 1;
        width: 100%;
    }

    .why-us-split,
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        transform: none;
        margin-top: 40px;
    }

    .section-title-left {
        font-size: 32px;
    }

    .service-content h3 {
        font-size: 24px;
    }

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

    .thanks-container h1 {
        font-size: 32px;
    }

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

    .legal-container h1 {
        font-size: 32px;
    }
}