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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept, .btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.nav-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-center {
    flex: 1;
    text-align: center;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

.nav-right a:hover {
    color: var(--secondary-color);
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 540px;
}

.hero-subtext {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.intro-story {
    padding: 100px 40px;
    background: var(--bg-white);
}

.container-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.intro-story h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-story p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-story strong {
    color: var(--secondary-color);
}

.insight-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-image-left, .split-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

.split-image-left img, .split-image-right img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.split-content-left, .split-content-right {
    flex: 1;
    padding: 60px;
}

.split-content-right h2, .split-content-left h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.split-content-right p, .split-content-left p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.benefit-list {
    margin-top: 30px;
    list-style: none;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.problem-amplification {
    padding: 100px 40px;
    background: var(--bg-white);
}

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

.problem-amplification h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card-problem {
    flex: 0 1 340px;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.card-problem.card-offset {
    margin-top: 40px;
}

.card-problem h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-problem p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.solution-reveal {
    padding: 120px 0;
    background: var(--bg-light);
}

.trust-building {
    padding: 100px 40px;
    background: var(--bg-white);
}

.trust-building h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 35px;
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.services-preview {
    padding: 100px 40px;
    background: var(--bg-light);
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 1 360px;
    background: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background-color: var(--border-color);
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-price {
    margin: 20px 25px 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-service {
    margin: 0 25px 30px;
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: calc(100% - 50px);
    transition: background 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.3s ease;
}

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

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-color);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer strong {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.thanks-section {
    padding: 120px 40px;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-white);
    border: 2px solid var(--accent-color);
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-next {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

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

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

.page-hero {
    padding: 80px 40px 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 0;
    background: var(--bg-white);
}

.philosophy {
    padding: 100px 40px;
    background: var(--bg-light);
}

.philosophy h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.philosophy p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.process {
    padding: 100px 40px;
    background: var(--bg-white);
}

.process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 0 1 260px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.values {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-list {
    list-style: none;
    margin-top: 30px;
}

.values-list li {
    padding: 18px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.values-list li strong {
    color: var(--secondary-color);
}

.cta-section {
    padding: 80px 40px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--secondary-color);
}

.cta-section .btn-primary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--bg-light);
}

.service-detail:nth-child(odd) {
    background: var(--bg-white);
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 30px 0;
}

.split-content-right ul, .split-content-left ul {
    margin-top: 25px;
    list-style: none;
}

.split-content-right ul li, .split-content-left ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.split-content-right ul li:before, .split-content-left ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.contact-info {
    padding: 80px 40px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-card {
    flex: 0 1 340px;
    padding: 40px;
    background: var(--bg-light);
    border-top: 4px solid var(--secondary-color);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.email-display {
    font-weight: 600;
    color: var(--secondary-color);
    user-select: all;
}

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

.contact-process {
    padding: 80px 40px;
    background: var(--bg-light);
}

.contact-process h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-item {
    flex: 0 1 260px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq {
    padding: 80px 40px;
    background: var(--bg-white);
}

.faq h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page ul, .legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page strong {
    color: var(--primary-color);
}

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

    .hero-content {
        padding: 60px 40px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

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

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

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

    .split-content-left, .split-content-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-right {
        gap: 20px;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .services-grid, .contact-grid, .process-grid, .process-steps {
        justify-content: stretch;
    }

    .service-card, .contact-card, .process-step, .step-item {
        flex: 1 1 100%;
    }
}