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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f7f4;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--text-light);
}

.main-nav {
    background: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    z-index: 1000;
    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: 2rem;
}

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

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

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

.btn-accept {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #234a31;
}

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

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-image {
    flex: 1;
    background: #b8a28f;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.services-showcase {
    padding: 6rem 2rem;
    background: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-header p {
    font-size: 1.15rem;
    color: #5a5a5a;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 450px;
    display: flex;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-image {
    flex: 0 0 45%;
    background: #d4cbbe;
    position: relative;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.select-service {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.select-service:hover {
    background: #234a31;
}

.form-section-split {
    display: flex;
    min-height: 90vh;
}

.form-visual {
    flex: 1;
    background: #c1b5a3;
    position: relative;
    overflow: hidden;
}

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

.form-container {
    flex: 1;
    padding: 5rem 6rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.form-container > p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234a31;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
    margin-top: 1rem;
}

.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-column p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #888;
}

.page-hero-split {
    display: flex;
    min-height: 70vh;
    background: var(--bg-light);
}

.hero-text-large {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-large h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text-large p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.story-section {
    padding: 5rem 2rem;
    background: var(--text-light);
}

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

.content-wrapper-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.content-wrapper-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.values-split {
    background: var(--bg-light);
    padding: 3rem 0;
}

.value-item {
    display: flex;
    min-height: 60vh;
}

.value-item.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.value-image {
    flex: 1;
    background: #aca394;
    position: relative;
    overflow: hidden;
}

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

.team-section-centered {
    padding: 5rem 2rem;
    background: var(--text-light);
    text-align: center;
}

.team-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 1.2rem;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.team-section-centered p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.cta-about {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-content-center p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

.services-hero {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

.services-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.services-header-content p {
    font-size: 1.15rem;
    color: #5a5a5a;
    line-height: 1.7;
}

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

.service-detail-split {
    display: flex;
    min-height: 65vh;
    margin-bottom: 0;
}

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

.service-detail-text {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--text-light);
}

.service-detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    font-size: 0.95rem;
    color: #3a3a3a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-service {
    align-self: flex-start;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #234a31;
}

.service-detail-image {
    flex: 1;
    background: #b5a896;
    position: relative;
    overflow: hidden;
}

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

.services-cta-centered {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.services-cta-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-cta-centered p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #234a31;
}

.contact-hero-split {
    display: flex;
    min-height: 65vh;
    background: var(--bg-light);
}

.contact-hero-text {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.contact-hero-text p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.contact-info-section {
    padding: 5rem 2rem;
    background: var(--text-light);
}

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

.contact-method {
    flex: 1;
}

.contact-method h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.email-static {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-visual {
    flex: 1;
    background: #c3b8a8;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-additional {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.additional-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.additional-content-centered p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.contact-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-contact-link {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contact-link:hover {
    background: #234a31;
}

.thanks-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
    display: flex;
    min-height: 70vh;
}

.thanks-content-centered {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
}

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

.thanks-content-centered h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-message {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 1.5rem;
}

.service-selected {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.thanks-visual {
    flex: 1;
    background: #c7bcad;
    position: relative;
    overflow: hidden;
}

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

.legal-page {
    padding: 5rem 2rem;
    background: var(--text-light);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.8rem 0 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .page-hero-split,
    .value-item,
    .service-detail-split,
    .contact-hero-split,
    .contact-details-split,
    .thanks-section {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        min-width: 300px;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .hero-content,
    .intro-text,
    .form-container,
    .hero-text-large,
    .value-content,
    .service-detail-text,
    .contact-hero-text {
        padding: 3rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-content h1,
    .hero-text-large h1 {
        font-size: 2.5rem;
    }

    .cta-buttons,
    .contact-links,
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .services-grid-split {
        flex-direction: column;
    }

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

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

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