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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c89968;
    --accent-color: #8b7355;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.btn-cookie:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-cookie-alt {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.nav-links a {
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.ad-notice {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-style: italic;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    padding: 6rem 3rem 3rem 3rem;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    z-index: 10;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.hero-text-block {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transform: translateY(-40px);
}

.hero-text-block h1 {
    color: var(--primary-color);
}

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

.cta-hero {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 60%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 8px 0 0 8px;
    box-shadow: var(--shadow);
}

.story-intro {
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

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

.story-container-narrow h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-container-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.problem-amplification {
    padding: 6rem 3rem;
    background-color: var(--bg-white);
}

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

.problem-text {
    flex: 1;
    padding-left: 8%;
}

.problem-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.problem-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(60px);
}

.insight-reveal {
    padding: 8rem 3rem;
    background-color: var(--primary-color);
    position: relative;
}

.insight-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.insight-card-overlap {
    width: 70%;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    transform: translateX(50px);
}

.insight-card-overlap h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.insight-card-overlap p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.trust-building {
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

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

.trust-block {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.trust-block-large {
    flex: 0 0 calc(60% - 1rem);
}

.trust-block-medium {
    flex: 0 0 calc(50% - 1rem);
    transform: translateY(-40px);
}

.trust-block-small {
    flex: 0 0 calc(35% - 1rem);
    transform: translateY(30px);
}

.trust-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trust-text {
    padding: 2rem;
}

.trust-text h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-text p {
    color: var(--text-light);
}

.testimonials-inline {
    padding: 8rem 3rem;
    background-color: var(--bg-white);
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    position: relative;
}

.testimonial-offset-left {
    margin-left: 0;
    margin-right: 20%;
}

.testimonial-offset-right {
    margin-left: 25%;
    margin-right: 0;
}

.testimonial-offset-center {
    margin-left: 10%;
    margin-right: 10%;
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.services-reveal {
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.services-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.services-cards-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: calc(50% - 1.25rem);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card-offset-1 {
    transform: translateY(0);
}

.service-card-offset-2 {
    transform: translateY(40px);
}

.service-card-offset-3 {
    transform: translateY(-30px);
}

.service-card-offset-4 {
    transform: translateY(50px);
}

.service-card-offset-5 {
    width: 100%;
    transform: translateY(20px);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

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

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

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

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.form-section-asymmetric {
    padding: 8rem 3rem;
    background-color: var(--bg-white);
}

.form-container-offset {
    max-width: 800px;
    margin: 0 0 0 15%;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
}

.contact-form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: 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 input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.final-cta-overlap {
    padding: 8rem 3rem;
    background-color: var(--primary-color);
    position: relative;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.final-cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.disclaimer-section {
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col-brand {
    flex: 1.5;
}

.footer-col h3,
.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

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

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

.page-hero-offset {
    padding: 12rem 3rem 6rem 3rem;
    background-color: var(--bg-light);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 0 0 10%;
}

.page-hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail-text {
    flex: 1;
    padding: 2rem;
}

.service-detail-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-text h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-detail-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-detail-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-service-detail {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.service-layout-featured {
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: 8px;
}

.service-featured-content {
    text-align: center;
    margin-bottom: 2rem;
}

.service-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 1.5rem;
}

.service-featured-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.featured-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.featured-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.featured-item p {
    color: var(--text-light);
}

.service-featured-includes {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto;
}

.service-price-large {
    font-size: 3rem;
}

.btn-service-featured {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.btn-service-featured:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.service-featured-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-top: 2rem;
}

.services-faq {
    padding: 6rem 3rem;
    background-color: var(--bg-white);
}

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

.faq-container h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.faq-item p {
    color: var(--text-light);
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.about-hero-text {
    flex: 1;
    padding: 6rem 3rem 6rem 10%;
    background-color: var(--bg-light);
}

.about-hero-text h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.about-hero-image {
    flex: 1;
    height: 70vh;
    background-size: cover;
    background-position: center;
}

.about-story {
    padding: 8rem 3rem;
    background-color: var(--bg-white);
}

.story-content-offset {
    max-width: 800px;
    margin: 0 0 0 15%;
}

.story-content-offset h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-content-offset p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-philosophy {
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

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

.philosophy-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy-card-large {
    flex: 0 0 100%;
}

.philosophy-card-medium {
    flex: 0 0 calc(55% - 1rem);
    transform: translateY(20px);
}

.philosophy-card-small {
    flex: 0 0 calc(40% - 1rem);
    transform: translateY(-30px);
}

.philosophy-card h3,
.philosophy-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--text-light);
}

.about-approach {
    padding: 8rem 3rem;
    background-color: var(--bg-white);
}

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

.approach-container h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.approach-steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-step {
    flex: 0 0 calc(50% - 1.5rem);
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.approach-step-1 {
    transform: translateY(0);
}

.approach-step-2 {
    transform: translateY(40px);
}

.approach-step-3 {
    transform: translateY(20px);
}

.approach-step-4 {
    transform: translateY(-20px);
}

.step-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.approach-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-step p {
    color: var(--text-light);
}

.about-team {
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.team-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.team-member {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-member-featured {
    flex: 0 0 100%;
    display: flex;
    gap: 3rem;
}

.team-member-standard {
    flex: 0 0 calc(50% - 1.5rem);
}

.team-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.team-member-featured .team-image {
    width: 40%;
    height: auto;
}

.team-info {
    padding: 2rem;
}

.team-member-featured .team-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.team-role {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-light);
}

.about-values {
    padding: 8rem 3rem;
    background-color: var(--bg-white);
}

.values-container-offset {
    max-width: 1000px;
    margin: 0 0 0 10%;
}

.values-container-offset h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

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

.value-item p {
    color: var(--text-light);
}

.about-cta {
    padding: 6rem 3rem;
    background-color: var(--primary-color);
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.about-cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-about-cta {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-about-cta:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-hero-offset {
    padding: 12rem 3rem 6rem 3rem;
    background-color: var(--bg-light);
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto 0 8%;
}

.contact-hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-main {
    padding: 6rem 3rem;
    background-color: var(--bg-white);
}

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

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

.contact-info-section {
    margin-bottom: 3rem;
}

.contact-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text-light);
}

.contact-note {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-note p {
    color: var(--text-light);
}

.contact-visual-block {
    flex: 1;
    position: relative;
}

.contact-image-main {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-overlap-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    max-width: 400px;
}

.contact-overlap-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-overlap-card p {
    color: var(--text-light);
}

.contact-location {
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

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

.location-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.location-details-grid {
    display: flex;
    gap: 3rem;
}

.location-detail {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.location-detail h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-detail p {
    color: var(--text-light);
}

.contact-faq {
    padding: 6rem 3rem;
    background-color: var(--bg-white);
}

.contact-cta {
    padding: 6rem 3rem;
    background-color: var(--primary-color);
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.contact-cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-contact-cta {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

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

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

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

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

.thanks-details {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.thanks-details h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.thanks-info p {
    text-align: left;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.thanks-info span {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-item .step-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 1rem;
    display: block;
}

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

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.thanks-note {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.thanks-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.legal-page {
    padding: 10rem 3rem 6rem 3rem;
    background-color: var(--bg-white);
}

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

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

.legal-update {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .nav-floating {
        top: 1rem;
        right: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 8rem 2rem 4rem 2rem;
    }

    .hero-content-offset {
        width: 100%;
        padding-left: 0;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        margin-top: 3rem;
        border-radius: 8px;
    }

    .problem-split,
    .contact-layout-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .problem-image {
        height: 400px;
        transform: translateY(0);
    }

    .service-card {
        width: 100%;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4,
    .service-card-offset-5 {
        transform: translateY(0);
    }

    .service-detail-block {
        flex-direction: column !important;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 0 0 calc(50% - 1rem);
    }

    .about-hero-split {
        flex-direction: column;
    }

    .about-hero-text {
        padding: 4rem 2rem;
    }

    .about-hero-image {
        height: 50vh;
    }

    .team-member-featured {
        flex-direction: column;
    }

    .team-member-featured .team-image {
        width: 100%;
        height: 350px;
    }

    .team-member-standard {
        flex: 0 0 100%;
    }

    .approach-steps-offset {
        flex-direction: column;
    }

    .approach-step {
        flex: 0 0 100%;
    }

    .approach-step-1,
    .approach-step-2,
    .approach-step-3,
    .approach-step-4 {
        transform: translateY(0);
    }

    .steps-grid,
    .location-details-grid,
    .service-featured-grid {
        flex-direction: column;
    }

    .contact-overlap-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .nav-floating {
        flex-direction: row;
        justify-content: space-between;
        width: calc(100% - 3rem);
        left: 1.5rem;
    }

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

    .ad-notice {
        display: none;
    }

    .testimonial-offset-left,
    .testimonial-offset-right,
    .testimonial-offset-center {
        margin-left: 0;
        margin-right: 0;
    }

    .trust-block-large,
    .trust-block-medium,
    .trust-block-small {
        flex: 0 0 100%;
        transform: translateY(0);
    }

    .philosophy-card-large,
    .philosophy-card-medium,
    .philosophy-card-small {
        flex: 0 0 100%;
        transform: translateY(0);
    }

    .form-container-offset,
    .story-content-offset,
    .values-container-offset,
    .contact-hero-content {
        margin: 0;
    }

    .footer-col {
        flex: 0 0 100%;
    }
}