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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2a;
    --accent-green: #6b9b4a;
    --dark-earth: #1a1a1a;
    --light-earth: #f4f1eb;
    --warm-sand: #e8dcc4;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 5% 5%;
    position: relative;
    overflow: hidden;
}

.hero-text-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    z-index: 2;
}

.hero-text-offset h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 800;
}

.hero-text-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -10%;
    margin-top: -5%;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-green);
    padding: 1rem 2.5rem;
    border: 2px solid var(--secondary-green);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.intro-offset {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    background: var(--light-earth);
}

.intro-block-left {
    flex: 2;
    max-width: 700px;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.intro-block-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-stat-right {
    flex: 1;
    margin-top: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

.problem-amplify {
    padding: 8rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transform: rotate(-2deg);
    box-shadow: 0 15px 50px var(--shadow);
}

.problem-text-diagonal {
    flex: 1;
    transform: translateY(-40px);
}

.problem-text-diagonal h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

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

.services-stagger {
    padding: 8rem 5%;
    background: var(--white);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

.service-content {
    flex: 1.2;
}

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

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-top: 1.5rem;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.trust-builder {
    padding: 8rem 5%;
    background: var(--light-earth);
    display: flex;
    gap: 5rem;
    align-items: center;
}

.trust-content-offset {
    flex: 1;
    max-width: 600px;
}

.trust-content-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-content-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-stats-cluster {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.testimonial-diagonal {
    padding: 8rem 5%;
    background: var(--primary-green);
    position: relative;
}

.testimonial-diagonal blockquote {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
}

.testimonial-diagonal blockquote.quote-offset {
    margin-left: auto;
    transform: translateY(-60px);
}

.testimonial-diagonal p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-diagonal cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.cta-embedded {
    padding: 8rem 5%;
    background: var(--warm-sand);
    display: flex;
    justify-content: center;
}

.cta-card-tilt {
    background: var(--white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 15px 50px var(--shadow);
    text-align: center;
    max-width: 700px;
    transform: rotate(-1deg);
}

.cta-card-tilt h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.cta-card-tilt p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.approach-section {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px var(--shadow);
}

.contact-form-section {
    padding: 8rem 5%;
    background: var(--light-earth);
}

.form-intro-offset {
    max-width: 600px;
    margin-bottom: 3rem;
}

.form-intro-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.contact-form-asymmetric {
    max-width: 700px;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
    transform: translateX(50px);
}

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

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

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

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

.btn-submit {
    background: var(--secondary-green);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.footer-asymmetric {
    background: var(--dark-earth);
    color: var(--white);
    padding: 5rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer-col p {
    color: #aaa;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #777;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    background: var(--secondary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-earth);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px var(--shadow);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

.btn-reject:hover {
    border-color: #888;
}

.page-hero-about,
.page-hero-services,
.contact-page-hero,
.thanks-hero {
    margin-top: 80px;
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    text-align: center;
}

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

.hero-content-diagonal h1,
.page-hero-services h1,
.contact-page-hero h1,
.thanks-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-diagonal p,
.page-hero-services p,
.contact-page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-origin {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.origin-text {
    flex: 1.3;
}

.origin-text h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.origin-image {
    flex: 1;
}

.origin-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px var(--shadow);
}

.philosophy-section {
    padding: 8rem 5%;
    background: var(--light-earth);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 700px;
}

.philosophy-card.offset {
    margin-left: auto;
    transform: translateX(-50px);
}

.philosophy-card h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-intro {
    padding: 8rem 5%;
    text-align: center;
}

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

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

.values-offset {
    padding: 8rem 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.value-block {
    max-width: 650px;
}

.value-block.diagonal {
    margin-left: auto;
    transform: translateX(-80px);
}

.value-block h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.experience-showcase {
    padding: 8rem 5%;
    background: var(--warm-sand);
}

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

.exp-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.exp-card h4 {
    font-size: 1.4rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

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

.cta-about {
    padding: 8rem 5%;
    background: var(--primary-green);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.services-detail {
    padding: 5rem 5%;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
    background: var(--light-earth);
    padding: 3rem;
    border-radius: 8px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background: var(--white);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-service {
    display: inline-block;
    background: var(--secondary-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.service-approach {
    padding: 8rem 5%;
    background: var(--primary-green);
}

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

.approach-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-services-page {
    padding: 8rem 5%;
    background: var(--warm-sand);
    text-align: center;
}

.cta-services-page h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.contact-split {
    padding: 5rem 5%;
    display: flex;
    gap: 5rem;
}

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

.contact-info-side h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail p,
.contact-detail a {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail a:hover {
    color: var(--secondary-green);
}

.contact-note {
    background: var(--light-earth);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.contact-form-standard {
    background: var(--light-earth);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-faq {
    padding: 8rem 5%;
    background: var(--light-earth);
}

.contact-faq h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

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

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

.thanks-hero {
    background: var(--primary-green);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    color: var(--white);
}

.thanks-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.service-selected {
    font-weight: 600;
    color: var(--accent-green);
}

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

.thanks-visual {
    margin-top: 3rem;
}

.thanks-visual img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.next-steps {
    padding: 8rem 5%;
    background: var(--light-earth);
}

.next-steps h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
}

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

.step-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-green);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 5%;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

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

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

.cookie-table thead {
    background: var(--light-earth);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--primary-green);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-text-offset {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 0;
    }

    .intro-offset,
    .problem-amplify,
    .about-origin,
    .approach-section,
    .contact-split {
        flex-direction: column;
        gap: 3rem;
    }

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

    .contact-form-asymmetric {
        transform: translateX(0);
    }

    .philosophy-card.offset,
    .value-block.diagonal {
        transform: translateX(0);
    }

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

    .exp-card {
        flex: 1 1 100%;
    }

    .steps-grid,
    .approach-steps {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-text-offset h1 {
        font-size: 2rem;
    }

    .section-header-offset h2,
    .trust-content-offset h2,
    .approach-text h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}