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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f2d;
    text-transform: lowercase;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c5f2d;
    text-decoration: none;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    padding: 5rem 6rem;
}

.split-image {
    flex: 1;
    position: relative;
    min-height: 500px;
    background-color: #e8e8e8;
}

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

.split-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.intro-section,
.approach-section {
    background-color: #ffffff;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

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

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

.service-link {
    display: inline-block;
    padding: 0.8rem 0;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    transition: color 0.3s;
}

.service-link:hover {
    color: #234a23;
}

.testimonial-section {
    background-color: #ffffff;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 2rem 2.5rem;
    border-left: 4px solid #2c5f2d;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.consultation-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

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

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

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

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

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

.submit-btn {
    padding: 1.1rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.final-cta,
.service-cta,
.cta-about {
    padding: 6rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content.centered {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta .cta-secondary {
    background-color: #ffffff;
    color: #2c5f2d;
    border-color: #ffffff;
}

.final-cta .cta-secondary:hover {
    background-color: transparent;
    color: #ffffff;
}

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background-color: #234a23;
    transform: translateY(-1px);
}

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

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

.page-hero {
    padding: 6rem 2rem 4rem;
    background-color: #f8f9fa;
}

.page-hero .hero-content.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    color: #555;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-item {
    background-color: #ffffff;
}

.service-detail-item:nth-child(even) {
    background-color: #f8f9fa;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes ul li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #555;
}

.service-includes ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

.price-value {
    font-size: 2.2rem;
    color: #2c5f2d;
    font-weight: 700;
}

.about-intro,
.philosophy-section,
.approach-detail {
    background-color: #ffffff;
}

.about-intro:nth-of-type(even),
.philosophy-section:nth-of-type(even) {
    background-color: #f8f9fa;
}

.expertise-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.content-wrapper h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.content-wrapper h2.centered {
    text-align: center;
}

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

.expertise-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.expertise-item p {
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

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

.value-item p {
    color: #555;
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #555;
    font-family: monospace;
    font-size: 1.05rem;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-note p {
    color: #555;
    margin-bottom: 1rem;
}

.contact-note ul {
    list-style: none;
    padding: 0;
}

.contact-note ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    color: #555;
}

.contact-note ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.contact-image {
    flex: 1;
    min-height: 600px;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-section > .content-wrapper > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.location-directions {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.direction-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.thanks-content.centered {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.next-steps {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.service-reference {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 1.1rem;
}

.service-reference strong {
    color: #2c5f2d;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.contact-reminder {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    color: #555;
    font-size: 1rem;
}

.legal-page {
    padding: 4rem 2rem;
}

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

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

.last-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

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

.legal-content a:hover {
    color: #234a23;
}

.link-text {
    color: #2c5f2d;
    font-family: monospace;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-layout {
        flex-direction: column;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-text {
        padding: 3rem 2rem;
    }

    .split-image {
        min-height: 400px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .contact-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .split-text h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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