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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #ffffff;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f4f1ed;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2a2a2a;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    background-color: #f9f8f6;
    gap: 1rem;
}

.mobile-menu a {
    padding: 0.5rem 0;
    font-weight: 500;
}

.ad-disclosure-mobile {
    font-size: 0.75rem;
    color: #666;
    background-color: #e8e4dc;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.hidden {
    display: none !important;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background-color: #f4f1ed;
}

.hero-text-side h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text-side p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn-hero {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.intro-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 2.2rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    width: 100%;
    border-radius: 8px;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f9f8f6;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 400px;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin: 1.5rem 1.5rem 1rem;
}

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

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 1.5rem 1.5rem;
}

.service-card .btn-secondary {
    margin: 0 1.5rem 2rem;
}

.process-split {
    display: flex;
    min-height: 700px;
}

.process-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.process-text-side {
    flex: 1;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.process-text-side h2 {
    font-size: 2.3rem;
    color: #2d5a3d;
    margin-bottom: 2.5rem;
}

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
    opacity: 0.3;
    min-width: 50px;
}

.step h4 {
    font-size: 1.2rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cta-banner {
    background-color: #2d5a3d;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

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

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background-color: #ffffff;
    color: #2d5a3d;
}

.cta-banner .btn-primary:hover {
    background-color: #f4f1ed;
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #f4f1ed;
}

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

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

.form-intro h2 {
    font-size: 2.3rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0dcd4;
    border-radius: 6px;
    font-size: 0.95rem;
    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;
    padding: 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

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

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

.footer-col p {
    font-size: 0.9rem;
    color: #b3b3b3;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b3b3b3;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-buttons button {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.page-hero {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.3rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #f9f8f6;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.experience-split {
    display: flex;
    min-height: 600px;
}

.experience-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.experience-text-side {
    flex: 1;
    padding: 4rem 5rem;
    background-color: #f4f1ed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-text-side h2 {
    font-size: 2.3rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.experience-text-side p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

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

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

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

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

.service-detail-text h2 {
    font-size: 2.1rem;
    color: #2d5a3d;
    margin-bottom: 1.2rem;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.pricing-box {
    background-color: #f4f1ed;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d5a3d;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

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

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

.contact-info-section {
    padding: 5rem 2rem;
}

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

.contact-details {
    flex: 1.2;
}

.contact-details h2 {
    font-size: 2.3rem;
    color: #2d5a3d;
    margin-bottom: 2.5rem;
}

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

.contact-block h3 {
    font-size: 1.2rem;
    color: #2a2a2a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-value {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.4rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-image-side {
    flex: 1;
}

.contact-image-side img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background-color: #f4f1ed;
    padding: 2rem;
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f9f8f6;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #2d5a3d;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #f4f1ed;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #666;
}

.thanks-next-steps {
    text-align: left;
    background-color: #f9f8f6;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps h3 {
    font-size: 1.3rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.thanks-contact {
    margin-bottom: 2rem;
}

.thanks-contact p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.thanks-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5a3d;
}

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

.legal-page {
    padding: 3rem 2rem 5rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.6rem;
    color: #2d5a3d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.2rem;
    color: #2a2a2a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container h4 {
    font-size: 1.05rem;
    color: #2a2a2a;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.legal-container p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    padding: 0.8rem;
    text-align: left;
    font-size: 0.9rem;
    color: #2a2a2a;
    font-weight: 600;
    border-bottom: 2px solid #e0dcd4;
}

.cookies-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #e0dcd4;
}

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

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-side {
        padding: 3rem 2rem;
    }

    .hero-text-side h1 {
        font-size: 2rem;
    }

    .hero-image-side {
        min-height: 300px;
    }

    .intro-split,
    .about-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
        gap: 2rem;
    }

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

    .process-split,
    .experience-split {
        flex-direction: column;
        min-height: auto;
    }

    .process-text-side,
    .experience-text-side {
        padding: 3rem 2rem;
    }

    .process-image-side,
    .experience-image-side {
        min-height: 300px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}