/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

ul {
    list-style: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 2rem;
    right: 3rem;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #9ed4a0;
}

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

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

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
}

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

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

/* Hero Section - Asymmetric */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    gap: 4rem;
    position: relative;
}

.hero-offset-left {
    flex: 1;
    max-width: 600px;
    padding-left: 5rem;
    padding-top: 3rem;
}

.hero-asymmetric h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -5rem;
}

.hero-image-right img {
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

/* CTA Buttons */
.cta-hero,
.cta-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover,
.cta-primary:hover {
    background-color: #1a3a1b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 1rem 2.5rem;
    border: 2px solid #2c5f2d;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Intro Section - Overlap */
.intro-overlap {
    padding: 0 2rem 6rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    margin-top: -4rem;
}

.intro-card-floating {
    flex: 1.2;
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-2rem);
}

.intro-card-floating h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.intro-stats-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2c5f2d;
    border-radius: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5f2d;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

/* Method Section - Diagonal */
.method-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.method-diagonal > * {
    transform: skewY(2deg);
}

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

.method-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.method-steps-stagger {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.step-offset-1 {
    margin-left: 2rem;
}

.step-offset-2 {
    margin-left: 8rem;
}

.step-offset-3 {
    margin-left: 4rem;
}

.step-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #2c5f2d;
    background-color: rgba(44, 95, 45, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.step-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Services Preview - Asymmetric */
.services-preview-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-left: 3rem;
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.link-inline {
    font-weight: 600;
    font-size: 1rem;
    color: #2c5f2d;
    transition: all 0.3s ease;
}

.link-inline:hover {
    transform: translateX(5px);
    display: inline-block;
}

.services-grid-irregular {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card-large {
    flex: 1 1 calc(60% - 1rem);
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}

.service-card-large img {
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-card-large h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-card-large p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-small {
    flex: 1 1 calc(40% - 1rem);
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}

.service-card-small:first-of-type {
    transform: translateY(-2rem);
}

.service-card-small h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.service-card-small p {
    color: #4a5568;
    margin-bottom: auto;
}

.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 1.5rem 0 1rem;
}

.btn-service {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
}

/* Trust Block - Offset */
.trust-block-offset {
    padding: 6rem 2rem;
    background-color: #ffffff;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-image-left {
    flex: 1;
    transform: translateX(-3rem);
}

.trust-image-left img {
    border-radius: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.trust-content-right {
    flex: 1;
    padding-left: 2rem;
}

.trust-content-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.trust-list {
    margin-bottom: 2rem;
}

.trust-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.trust-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

/* Case Study - Diagonal */
.case-study-diagonal {
    padding: 5rem 2rem;
    background-color: #1a202c;
    color: #ffffff;
    margin: 4rem 0;
    transform: skewY(-1deg);
}

.case-study-diagonal > * {
    transform: skewY(1deg);
}

.case-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.case-header-center h2 {
    font-size: 2.5rem;
}

.case-content-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-left,
.case-right {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

.case-left h3,
.case-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #9ed4a0;
}

.case-left p,
.case-right p {
    line-height: 1.7;
    color: #e2e8f0;
}

/* Benefits - Floating */
.benefits-floating {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-floating h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
}

.benefits-irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #2c5f2d;
}

.benefit-pos-1 {
    transform: translateY(-1rem);
}

.benefit-pos-2 {
    transform: translateY(1rem);
}

.benefit-pos-3 {
    transform: translateY(-0.5rem);
}

.benefit-pos-4 {
    transform: translateY(0.5rem);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonial - Overlap */
.testimonial-overlap {
    padding: 4rem 2rem;
    background-color: #2c5f2d;
    margin: 4rem 0;
}

.testimonial-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    transform: translateY(-2rem) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-main p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonial-main cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
    font-size: 1rem;
}

/* Form Section - Asymmetric */
.form-section-asymmetric {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #edf2f7 0%, #f7fafc 100%);
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.form-intro-offset {
    flex: 0.8;
    padding-right: 2rem;
}

.form-intro-offset h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-intro-offset p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-form-diagonal {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2rem);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.3);
}

/* Final CTA - Floating */
.final-cta-floating {
    padding: 5rem 2rem;
    background-color: #1a202c;
    color: #ffffff;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transform: rotate(-1deg);
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-final {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: #1a3a1b;
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.4);
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.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 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #9ed4a0;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e0;
}

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

/* Page Hero - Offset */
.page-hero-offset {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-left: 10%;
}

.page-hero-offset h1 {
    font-size: 3.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.3rem;
    color: #4a5568;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-full-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-image-left,
.service-image-right {
    flex: 1;
}

.service-image-left img,
.service-image-right img {
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-full-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-full-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c5f2d;
}

.service-full-card ul {
    margin-bottom: 1.5rem;
}

.service-full-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-full-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #2c5f2d;
}

.price-main {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 0.25rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #4a5568;
}

.btn-service-detail {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
}

.services-cta-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
    border-radius: 1rem;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
}

.services-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-cta-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* About Page Styles */
.about-story-asymmetric {
    padding: 3rem 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text-diagonal {
    flex: 1;
    padding-right: 2rem;
}

.story-text-diagonal h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.story-text-diagonal p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-image-offset {
    flex: 1;
    transform: translateY(-3rem) rotate(2deg);
}

.story-image-offset img {
    border-radius: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.philosophy-split {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-left,
.philosophy-right {
    flex: 1;
}

.philosophy-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.philosophy-left p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.philosophy-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.philosophy-right ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.philosophy-right ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.expertise-stagger {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-stagger h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
}

.expertise-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #2c5f2d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.exp-offset-1 {
    margin-left: 2rem;
}

.exp-offset-2 {
    margin-left: 8rem;
}

.exp-offset-3 {
    margin-left: 4rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.expertise-card p {
    color: #4a5568;
    line-height: 1.6;
}

.values-diagonal {
    padding: 5rem 2rem;
    background-color: #1a202c;
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.values-diagonal > * {
    transform: skewY(2deg);
}

.values-diagonal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-content-split {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-block {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #9ed4a0;
}

.value-block p {
    color: #e2e8f0;
    line-height: 1.7;
}

.approach-overlap {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.approach-content-centered p {
    font-size: 1.1rem;
    color: #4a5568;
}

.approach-steps-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-step {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 0.75rem;
}

.approach-step:nth-child(odd) {
    transform: translateY(-1rem);
}

.approach-step:nth-child(even) {
    transform: translateY(1rem);
}

.step-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.approach-step p {
    color: #4a5568;
    line-height: 1.6;
}

.team-info-offset {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 1rem;
    margin-left: 15%;
}

.team-info-offset h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.team-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-cta-floating {
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content-center h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-content-center p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-layout-asymmetric {
    padding: 3rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-info-offset h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.contact-detail-block h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #2c5f2d;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.contact-note p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    transform: translateY(-2rem) rotate(1deg);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: #1a202c;
}

.contact-additional-info {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-additional-info h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.faq-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
}

.faq-item:nth-child(odd) {
    transform: translateX(-1rem);
}

.faq-item:nth-child(even) {
    transform: translateX(1rem);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-cta-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Thanks Page Styles */
.thanks-hero-centered {
    padding: 8rem 2rem 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.service-confirmation {
    padding: 1rem 2rem;
    background-color: #f7fafc;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    text-align: center;
}

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

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

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    color: #4a5568;
    line-height: 1.6;
    padding-top: 0.5rem;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 0.85rem 2rem;
    border: 2px solid #2c5f2d;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.thanks-additional-resources {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.thanks-additional-resources h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.resource-card p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-card a {
    font-weight: 600;
    color: #2c5f2d;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-updated {
    color: #4a5568;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #1a202c;
}

.cookie-table td {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }

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

    .hero-offset-left {
        padding-left: 0;
        padding-top: 0;
    }

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

    .hero-image-right {
        margin-top: 2rem;
        transform: none;
    }

    .hero-image-right img {
        transform: none;
    }

    .intro-overlap {
        flex-direction: column;
        margin-top: 0;
    }

    .intro-card-floating {
        transform: none;
    }

    .intro-stats-offset {
        margin-top: 0;
    }

    .method-steps-stagger .step-card {
        margin-left: 0 !important;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-small {
        flex: 1 1 100%;
    }

    .service-card-small:first-of-type {
        transform: none;
    }

    .trust-block-offset {
        flex-direction: column;
    }

    .trust-image-left {
        transform: none;
    }

    .trust-content-right {
        padding-left: 0;
    }

    .case-content-split {
        flex-direction: column;
    }

    .benefits-irregular-grid {
        flex-direction: column;
    }

    .benefit-card {
        flex: 1 1 100%;
        transform: none !important;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .contact-form-diagonal {
        transform: none;
    }

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

    .page-hero-offset {
        margin-left: 0;
        text-align: center;
    }

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

    .service-full-card {
        flex-direction: column;
    }

    .about-story-asymmetric {
        flex-direction: column;
    }

    .story-image-offset {
        transform: none;
    }

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

    .expertise-grid-irregular .expertise-card {
        margin-left: 0 !important;
    }

    .values-content-split {
        flex-direction: column;
    }

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

    .approach-step {
        transform: none !important;
    }

    .team-info-offset {
        margin-left: 0;
    }

    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .contact-map-placeholder {
        transform: none;
        height: 300px;
    }

    .faq-grid-offset {
        flex-direction: column;
    }

    .faq-item {
        transform: none !important;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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