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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-text: #666;
    --background: #fff;
    --light-bg: #f8f8f8;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--background);
}

.navbar {
    background: var(--primary-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    color: var(--background);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

.ad-notice {
    color: #999;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 3px;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--light-bg);
}

.hero-text {
    max-width: 550px;
}

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

.hero-text p {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d4c4b0;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--background);
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #6f5a41;
}

.split-layout {
    display: flex;
    align-items: stretch;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.3rem;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #d4c4b0;
}

.philosophy-section {
    background: var(--background);
}

.section-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

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

.section-header.centered p {
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--background);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #d4c4b0;
}

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

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

.service-info p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--accent-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--background);
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

.process-section {
    background: var(--background);
}

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1rem;
    color: var(--light-text);
}

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

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--background);
    padding: 2.5rem;
    text-align: left;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: normal;
}

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

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.trust-signals {
    margin-top: 2rem;
}

.signal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.signal .icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.form-container {
    flex: 1;
    background: var(--light-bg);
    padding: 3rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
    background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--accent-color);
    color: var(--background);
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6f5a41;
}

.footer {
    background: var(--primary-color);
    color: var(--background);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #777;
    max-width: 900px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--background);
    padding: 1.5rem;
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--background);
}

.btn-accept:hover {
    background: #6f5a41;
}

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

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

.page-header {
    background: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.header-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.story-section {
    background: var(--background);
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 2rem;
    background: var(--background);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.team-section {
    background: var(--background);
}

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

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

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.narrow-content p {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.cta-section {
    background: var(--background);
    padding: 5rem 2rem;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
}

.cta-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--background);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-primary-large:hover {
    background: #6f5a41;
}

.services-detailed {
    max-width: 1600px;
    margin: 0 auto;
}

.service-detail-block {
    margin-bottom: 0;
}

.features-list {
    margin: 2rem 0;
}

.features-list h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.features-list ul {
    list-style: none;
    padding-left: 0;
}

.features-list ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--light-text);
}

.features-list ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.pricing-box {
    background: var(--light-bg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--light-text);
}

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

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

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

.cta-content-centered p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-page-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 5rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.note {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
}

.contact-form-block {
    flex: 1;
}

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

.contact-form-block p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.map-placeholder {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.map-info {
    max-width: 900px;
    margin: 0 auto;
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.map-info p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.map-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.map-info ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-color);
}

.map-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--background);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.lead {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.service-selected {
    font-size: 1.05rem;
    color: var(--text-color);
    padding: 1rem;
    background: var(--background);
}

.next-steps {
    text-align: left;
    background: var(--background);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.step-num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
}

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

.legal-page {
    background: var(--background);
    padding: 3rem 2rem;
}

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

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

.updated {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    color: var(--light-text);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6f5a41;
}

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

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

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

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

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

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

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

    .contact-page-layout {
        flex-direction: column;
        gap: 3rem;
    }

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

    .services-container {
        flex-direction: column;
    }

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