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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-visual-block {
    width: 55%;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-offset {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background-color: var(--bg-white);
}

.intro-narrow {
    width: 50%;
    padding-right: 40px;
}

.intro-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image-float {
    width: 40%;
    margin-top: 60px;
}

.intro-image-float img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.problem-amplification {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.problem-grid-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    width: 60%;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.problem-visual {
    width: 35%;
    background-color: var(--border-color);
}

.problem-visual img {
    width: 100%;
    height: auto;
}

.insight-reveal {
    padding: 120px 5%;
    background-color: var(--primary-color);
    color: white;
}

.insight-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.insight-blocks {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.insight-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 35px;
    width: 30%;
    border-radius: 2px;
}

.insight-card.offset-top {
    margin-top: 50px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.storytelling-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.story-layout-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-content {
    width: 55%;
    padding-left: 5%;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image {
    width: 40%;
    background-color: var(--border-color);
}

.story-image img {
    width: 100%;
    height: auto;
}

.trust-building {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.trust-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px 40px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card.left-float {
    align-self: flex-start;
    width: 70%;
    margin-left: 0;
}

.testimonial-card.right-float {
    align-self: flex-end;
    width: 70%;
    margin-right: 0;
}

.testimonial-card.center-float {
    align-self: center;
    width: 65%;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.services-reveal {
    padding: 100px 5% 120px;
    background-color: var(--bg-white);
}

.services-intro {
    text-align: center;
    margin-bottom: 70px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 19px;
    color: var(--text-light);
}

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

.service-card {
    width: calc(50% - 20px);
    background-color: var(--bg-light);
    overflow: hidden;
    border-radius: 2px;
    transition: transform 0.3s;
}

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

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

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
}

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

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 30px 20px;
    line-height: 1.5;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 30px;
}

.select-service-btn {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 0 0 10%;
    background-color: var(--bg-white);
    padding: 60px 50px;
    border-radius: 2px;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-container-offset > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.service-display {
    background-color: var(--bg-light);
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
    font-size: 16px;
    color: var(--text-dark);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.cta-submit {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-block p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

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

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

.footer-block ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-block ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    margin-bottom: 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.footer-disclaimer p {
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px 5%;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: white;
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.85;
}

.page-hero {
    padding: 100px 5% 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.services-detail {
    padding: 60px 5%;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-content {
    width: 55%;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-content ul {
    margin: 25px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    width: 40%;
    background-color: var(--border-color);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.about-content-offset {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text {
    width: 50%;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-image {
    width: 45%;
    background-color: var(--border-color);
}

.about-image img {
    width: 100%;
    height: auto;
}

.philosophy-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.philosophy-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.philosophy-card {
    width: 30%;
    background-color: var(--bg-white);
    padding: 40px 35px;
    border-radius: 2px;
}

.philosophy-card.offset {
    margin-top: 50px;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.team-layout {
    max-width: 800px;
    margin: 0 auto;
}

.team-layout p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.values-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.values-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.value-block {
    background-color: var(--bg-white);
    padding: 40px 45px;
    border-left: 4px solid var(--secondary-color);
}

.value-block.offset-right {
    margin-left: 150px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    padding: 100px 5%;
    background-color: var(--secondary-color);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.contact-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-details {
    width: 50%;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 2px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-dark);
}

.contact-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-visual {
    width: 45%;
    background-color: var(--border-color);
}

.contact-visual img {
    width: 100%;
    height: auto;
}

.visit-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.visit-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.visit-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 5% 100px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content strong {
    color: var(--text-dark);
}

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

.thanks-container {
    padding: 120px 5%;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 50px;
    border-radius: 2px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    margin: 25px 0;
    border-radius: 2px;
}

.service-confirmation p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.thanks-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-visual-block {
        width: 100%;
    }

    .hero-title {
        font-size: 38px;
    }

    .intro-offset,
    .problem-grid-asymmetric,
    .story-layout-split,
    .about-content-offset,
    .contact-layout {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-image-float,
    .problem-text,
    .problem-visual,
    .story-content,
    .story-image,
    .about-text,
    .about-image,
    .contact-details,
    .contact-visual {
        width: 100%;
    }

    .insight-blocks,
    .philosophy-cards {
        flex-direction: column;
    }

    .insight-card,
    .philosophy-card {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .services-grid-offset,
    .footer-main {
        flex-direction: column;
    }

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

    .service-detail-content,
    .service-detail-image {
        width: 100%;
    }

    .form-container-offset {
        margin: 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .value-block.offset-right {
        margin-left: 0;
    }
}