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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fefefe;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.btn-cookie-accept:hover {
    background: #3d7f5f;
}

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2d5f3f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5f3f;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background: #2d5f3f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #3d7f5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.4);
}

.hero-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content-narrow {
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.hero-content-narrow h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.btn-hero {
    display: inline-block;
    background: #2d5f3f;
    color: #fff;
    padding: 1.2rem 3rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #3d7f5f;
    transform: translateY(-2px);
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-story {
    background: #f9f9f9;
}

.lead-text {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.problem-reveal {
    background: #fff;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.insight-block {
    background: #2d5f3f;
    color: #fff;
}

.insight-block h2 {
    color: #fff;
}

.insight-callout {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 4px solid #fff;
    margin-top: 2rem;
    font-style: italic;
    font-size: 1.3rem;
}

.trust-narrative {
    background: #f4f4f4;
}

.narrative-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.narrative-item {
    flex: 1;
    min-width: 250px;
}

.narrative-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.testimonial-inline {
    background: #1a1a1a;
    color: #fff;
}

.testimonial-large {
    border: none;
    padding: 0;
}

.testimonial-large p {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.testimonial-large cite {
    font-size: 1rem;
    font-style: normal;
    color: #aaa;
}

.visual-gallery {
    padding: 5rem 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item {
    flex: 1;
    min-width: 280px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.benefit-reveal {
    background: #fff;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-highlight {
    background: #2d5f3f;
    color: #fff;
}

.benefit-highlight h3 {
    color: #fff;
}

.social-proof {
    background: #f4f4f4;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: #2d5f3f;
}

.cta-story {
    background: #fff;
}

.btn-cta-inline {
    display: inline-block;
    background: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-top: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-inline:hover {
    background: #3d7f5f;
    transform: translateY(-2px);
}

.services-pricing {
    background: #f9f9f9;
    padding: 6rem 2rem;
}

.services-pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

.service-featured {
    border: 3px solid #2d5f3f;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2d5f3f;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

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

.btn-service {
    width: 100%;
    background: #2d5f3f;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #3d7f5f;
}

.urgency-soft {
    background: #fffbe6;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.form-section {
    background: #fff;
    padding: 6rem 2rem;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

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

.btn-submit {
    width: 100%;
    background: #2d5f3f;
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3d7f5f;
}

.final-cta {
    background: #2d5f3f;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
}

.btn-final {
    display: inline-block;
    background: #fff;
    color: #2d5f3f;
    padding: 1.2rem 3rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-final:hover {
    background: #f0f0f0;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
}

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

.page-hero {
    margin-top: 90px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a4028 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
}

.hero-lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 5rem 2rem;
}

.story-block {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-image {
    max-width: 1000px;
    margin: 4rem auto;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.values-grid {
    max-width: 1200px;
    margin: 4rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.cta-about {
    max-width: 700px;
    margin: 4rem auto;
    text-align: center;
    background: #f4f4f4;
    padding: 3rem;
    border-radius: 8px;
}

.btn-cta {
    display: inline-block;
    background: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-top: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #3d7f5f;
}

.services-detail {
    padding: 3rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 2rem 0;
}

.btn-service-detail {
    display: inline-block;
    background: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: #3d7f5f;
}

.services-cta {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-page {
    padding: 3rem 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-block h3 {
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: #666;
}

.contact-block a {
    color: #2d5f3f;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    margin-top: 70px;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-service {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #2d5f3f;
}

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

.btn-thanks {
    display: inline-block;
    background: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-thanks:hover {
    background: #3d7f5f;
}

.btn-thanks-secondary {
    display: inline-block;
    background: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 3rem 2rem;
    margin-top: 70px;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.legal-update {
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.cookie-table th {
    background: #f4f4f4;
    font-weight: 600;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-content-narrow h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

    .service-reverse {
        flex-direction: column;
    }

    .narrative-flow {
        flex-direction: column;
    }

    .gallery-grid {
        flex-direction: column;
    }

    .gallery-item {
        min-width: 100%;
    }

    .testimonial-large p {
        font-size: 1.5rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container-narrow,
    .container,
    .container-split {
        padding: 3rem 1.5rem;
    }

    .btn-hero,
    .btn-final,
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 2rem;
    }

    .service-price-large {
        font-size: 2.5rem;
    }
}