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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b7355;
    --accent-color: #c9a66b;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    background: var(--bg-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.hero-asymmetric {
    background: var(--bg-light);
    padding: 5rem 2rem 3rem;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-block {
    max-width: 680px;
    margin-left: 8%;
    padding: 2rem 0;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image-offset {
    width: 75%;
    margin-left: auto;
    margin-right: 5%;
}

.hero-image-offset img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: var(--border-color);
}

.intro-diagonal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.diagonal-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-content-narrow {
    flex: 1;
    max-width: 600px;
    padding-left: 3rem;
}

.image-overlap {
    width: 400px;
    position: relative;
    margin-top: -3rem;
}

.image-overlap img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    background-color: var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.problem-cards-stacked {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-left: 12%;
}

.cards-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card-offset {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 550px;
}

.card-1 {
    margin-left: 15%;
}

.card-2 {
    margin-left: auto;
    margin-right: 10%;
}

.card-3 {
    margin-left: 8%;
}

.insight-split {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.insight-text {
    flex: 1;
    padding-top: 2rem;
}

.insight-visual {
    width: 420px;
    margin-top: -4rem;
}

.insight-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: var(--border-color);
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-block p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.9;
}

.services-preview-asymmetric {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.title-creative {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: left;
    padding-left: 5%;
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    width: 340px;
    transition: transform 0.3s ease;
}

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

.offset-top {
    margin-top: -2rem;
}

.offset-bottom {
    margin-top: 3rem;
}

.offset-mid {
    margin-top: 1rem;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.price {
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-color);
}

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

.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

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

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    width: 100%;
}

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

.form-section-creative {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-block h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.about-hero-offset {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.about-image-left {
    width: 400px;
    margin-top: 2rem;
}

.about-image-left img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    background-color: var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-text-right {
    flex: 1;
    padding-top: 3rem;
}

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

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

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

.philosophy-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.philosophy-block {
    flex: 1;
}

.left-offset {
    padding-left: 5%;
}

.philosophy-image {
    width: 500px;
}

.right-overlap {
    margin-top: -3rem;
}

.philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--border-color);
}

.approach-cards {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.approach-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.approach-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    width: 280px;
    border-left: 4px solid var(--accent-color);
}

.values-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

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

.values-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

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

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

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-item-asymmetric {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-item-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    width: 450px;
}

.left-position {
    margin-left: 0;
}

.right-position {
    margin-right: 0;
}

.service-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: var(--border-color);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.service-description {
    flex: 1;
}

.service-details {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.duration {
    font-family: 'Helvetica Neue', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-tag {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.contact-intro {
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

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

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

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

.no-link {
    color: var(--text-dark);
    cursor: text;
}

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

.contact-visual-block {
    width: 400px;
}

.contact-visual-block img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    background-color: var(--border-color);
}

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

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

.contact-cta {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    color: white;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.thanks-main {
    padding: 6rem 2rem;
    background: var(--bg-light);
    min-height: 60vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.next-steps {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.what-to-expect {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.expect-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    width: 320px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.legal-content h1 {
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
}

@media (max-width: 1024px) {
    .hero-offset,
    .diagonal-container,
    .split-content,
    .about-container,
    .philosophy-layout,
    .contact-layout-split,
    .service-item-asymmetric {
        flex-direction: column;
    }

    .hero-image-offset,
    .image-overlap,
    .insight-visual,
    .about-image-left,
    .philosophy-image,
    .contact-visual-block,
    .service-visual {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .text-content-narrow,
    .form-container-offset {
        padding-left: 0;
        margin-left: 0;
    }

    .card-1,
    .card-2,
    .card-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .service-item-asymmetric.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .services-grid-offset,
    .approach-grid-irregular,
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .approach-card,
    .step-item {
        width: 100%;
        max-width: 400px;
    }

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

    .contact-form {
        padding: 2rem;
    }
}