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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

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

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

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2d6a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1b4332;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem 1.5rem;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.6rem;
    background: #f0f0f0;
    border-radius: 3px;
    text-align: center;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-links a:hover {
    border-bottom-color: #2d6a4f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #1b4332;
}

.cookie-btn.reject {
    background: #666;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #555;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    margin-bottom: 5rem;
    padding-right: 280px;
}

.hero-content-offset {
    width: 45%;
    padding: 8rem 0 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-visual-layer {
    position: absolute;
    right: 280px;
    top: 0;
    width: 55%;
    height: 100%;
    background-color: #d8e5e0;
}

.hero-visual-layer img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2d6a4f;
    color: #fff;
    border-radius: 4px;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background: #1b4332;
    color: #fff;
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #fff;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2d6a4f;
    color: #fff;
}

.intro-offset {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 6rem 0 6rem;
}

.intro-narrow {
    width: 55%;
}

.intro-visual-right {
    width: 45%;
    background-color: #e8ede8;
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
}

.services-staggered {
    padding: 5rem 6rem 5rem 6rem;
    background: #f5f5f5;
    margin-bottom: 5rem;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #d8e5e0;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    flex: 1;
}

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

.select-service {
    padding: 0.8rem 1.5rem;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.select-service:hover {
    background: #1b4332;
}

.form-section-inline {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 6rem;
}

.form-container-offset {
    width: 60%;
}

.form-visual {
    width: 40%;
    background-color: #e8ede8;
}

.form-visual img {
    width: 100%;
    height: 100%;
}

.estate-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-submit {
    padding: 1rem 2.5rem;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background: #1b4332;
}

.trust-indicators {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 6rem;
}

.indicator-block {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #2d6a4f;
}

.philosophy-wide {
    padding: 5rem 6rem;
    background: #2d6a4f;
    color: #fff;
    margin-bottom: 5rem;
}

.philosophy-wide h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.philosophy-columns {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h4 {
    color: #b7e4c7;
    margin-bottom: 1rem;
}

.footer-stacked {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 6rem 2rem;
}

.footer-main {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #b7e4c7;
}

.footer-disclaimer {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    margin-bottom: 5rem;
    padding-right: 280px;
}

.about-content {
    width: 50%;
    padding: 6rem 3rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
}

.about-visual {
    width: 50%;
    background-color: #d8e5e0;
}

.about-visual img {
    width: 100%;
    height: 100%;
}

.approach-wide {
    padding: 5rem 6rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.step-block {
    flex: 1;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 1rem;
}

.values-offset {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 6rem;
}

.values-text {
    width: 60%;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-size: 1.5rem;
}

.values-image {
    width: 40%;
    background-color: #e8ede8;
}

.values-image img {
    width: 100%;
    height: 100%;
}

.team-narrative {
    padding: 5rem 6rem;
    background: #f5f5f5;
    margin-bottom: 5rem;
}

.commitment-full {
    padding: 0 6rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro-asymmetric {
    padding: 8rem 6rem 4rem 6rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #fff;
    margin-bottom: 5rem;
}

.services-intro-asymmetric h1 {
    color: #fff;
}

.service-detail-offset {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 6rem;
}

.service-detail-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 6rem;
}

.service-detail-visual {
    width: 45%;
    background-color: #d8e5e0;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    width: 55%;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0 2rem 2rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
}

.pricing-notes {
    padding: 4rem 6rem;
    background: #f5f5f5;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.contact-hero {
    padding: 8rem 6rem 4rem 6rem;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    color: #fff;
    margin-bottom: 5rem;
}

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

.contact-details-asymmetric {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 6rem;
}

.contact-info-offset {
    width: 60%;
}

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

.contact-block h3 {
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.contact-visual {
    width: 40%;
    background-color: #e8ede8;
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.approach-contact {
    padding: 4rem 6rem;
    background: #f5f5f5;
    text-align: center;
    margin-bottom: 5rem;
}

.visit-info {
    padding: 0 6rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-hero {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 6rem;
}

.thanks-content {
    width: 60%;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thanks-visual {
    width: 40%;
    background-color: #e8ede8;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.next-steps {
    padding: 5rem 6rem;
    background: #f5f5f5;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 6px;
}

.legal-content {
    padding: 6rem 6rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

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

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

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

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

@media (max-width: 1200px) {
    .nav-floating {
        position: static;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .hero-asymmetric,
    .about-hero-split {
        padding-right: 0;
        flex-direction: column;
    }

    .hero-content-offset,
    .about-content {
        width: 100%;
        padding: 4rem 2rem;
    }

    .hero-visual-layer,
    .about-visual {
        position: static;
        width: 100%;
        height: 400px;
    }

    .intro-offset,
    .service-detail-offset,
    .service-detail-reverse,
    .form-section-inline,
    .contact-details-asymmetric,
    .thanks-hero,
    .values-offset {
        flex-direction: column;
        padding: 0 2rem;
    }

    .intro-narrow,
    .intro-visual-right,
    .service-detail-content,
    .service-detail-visual,
    .form-container-offset,
    .form-visual,
    .contact-info-offset,
    .contact-visual,
    .thanks-content,
    .thanks-visual,
    .values-text,
    .values-image {
        width: 100%;
    }

    .services-staggered,
    .services-intro-asymmetric,
    .contact-hero,
    .philosophy-wide,
    .approach-wide,
    .team-narrative,
    .commitment-full,
    .pricing-notes,
    .approach-contact,
    .visit-info,
    .next-steps,
    .legal-content {
        padding: 3rem 2rem;
    }

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

    .philosophy-columns,
    .approach-steps,
    .steps-grid,
    .footer-main {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        padding: 0 2rem;
    }

    .footer-stacked {
        padding: 3rem 2rem 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

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

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}