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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e4e;
    --accent-color: #8fbc5e;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

ul {
    list-style: none;
}

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

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

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

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

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

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

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.hero-offset {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%);
}

.hero-text-block {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transform: translateX(-1rem);
}

.hero-text-block h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.intro-asymmetric {
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: var(--bg-light);
}

.intro-left {
    max-width: 600px;
}

.intro-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: var(--secondary-color);
}

.intro-right-visual {
    transform: translateX(1rem);
}

.intro-right-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.philosophy-overlap {
    padding: 4rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-card {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    z-index: 2;
}

.philosophy-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.philosophy-image-offset {
    transform: translateX(-1rem);
}

.philosophy-image-offset img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.services-preview-stacked {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

.section-header-offset {
    margin-bottom: 3rem;
    transform: translateX(1rem);
}

.label-small {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header-offset h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.card-large {
    transform: translateX(-0.5rem);
}

.card-offset-top {
    transform: translateX(1rem) translateY(-1rem);
}

.card-offset-bottom {
    transform: translateX(-1rem) translateY(1rem);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

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

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-cta-center {
    text-align: center;
    margin-top: 2rem;
}

.cta-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.trust-section-diagonal {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.trust-visual-overlap img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(1rem);
}

.testimonial-asymmetric {
    padding: 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-quote {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    transform: translateX(-1rem);
}

.testimonial-quote blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-image-stack img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(2rem);
}

.process-creative {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

.section-title-offset {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    transform: translateX(-1rem);
}

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

.process-step {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.step-offset-1 {
    transform: translateX(0.5rem);
}

.step-offset-2 {
    transform: translateX(-0.5rem);
}

.step-offset-3 {
    transform: translateX(1rem);
}

.step-offset-4 {
    transform: translateX(-1rem);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.gallery-overlap {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}

.gallery-overlap h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-item img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.item-offset-top {
    transform: translateY(-1rem);
}

.item-offset-bottom {
    transform: translateY(1rem);
}

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

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(-1rem);
}

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--primary-color);
}

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

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

.cta-sticky-wrapper {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

.cta-sticky {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-sticky.visible {
    display: flex;
}

.cta-sticky span {
    font-size: 1rem;
    font-weight: 500;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--bg-light);
}

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

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

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

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

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

.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(--accent-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-offset {
    padding: 8rem 1.5rem 4rem;
    background: var(--bg-light);
    position: relative;
}

.hero-image-about {
    margin-bottom: -3rem;
}

.hero-image-about img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hero-text-overlap {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(1rem);
}

.hero-text-overlap h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.story-asymmetric {
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-left {
    max-width: 700px;
}

.story-left h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-left p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-right-visual {
    transform: translateX(-1rem);
}

.story-right-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.values-overlap {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}

.section-title-center {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.card-offset-1 {
    transform: translateX(0.5rem);
}

.card-offset-2 {
    transform: translateX(-0.5rem);
}

.card-offset-3 {
    transform: translateX(1rem);
}

.card-offset-4 {
    transform: translateX(-1rem);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-diagonal {
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-intro {
    max-width: 600px;
}

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

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

.team-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(1.5rem);
}

.philosophy-detail {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}

.philosophy-content-offset {
    transform: translateX(-1rem);
}

.philosophy-content-offset h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.point-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.point-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-stacked {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

.testimonials-stacked h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.testimonial-block {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.block-offset-1 {
    transform: translateX(0.5rem);
}

.block-offset-2 {
    transform: translateX(-0.5rem);
}

.block-offset-3 {
    transform: translateX(1rem);
}

.testimonial-block blockquote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-about-offset {
    padding: 6rem 1.5rem;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-hero-diagonal {
    padding: 8rem 1.5rem 4rem;
    background: var(--bg-light);
}

.services-hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.services-intro-offset {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(1rem);
}

.intro-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-offset-left {
    transform: translateX(-0.5rem);
}

.card-offset-right {
    transform: translateX(0.5rem);
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content {
    padding: 2.5rem 2rem;
}

.service-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

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

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

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-info-asymmetric {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

.pricing-info-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.info-point h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-point p {
    color: var(--text-light);
    line-height: 1.7;
}

.form-section-services {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(1rem);
}

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

.form-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.cta-services-bottom {
    padding: 6rem 1.5rem;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-content-offset {
    transform: translateX(-1rem);
}

.cta-content-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content-offset p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-hero-offset {
    padding: 8rem 1.5rem 4rem;
    background: var(--bg-light);
}

.contact-hero-text {
    transform: translateX(-1rem);
}

.contact-hero-text h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-info-asymmetric {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

.contact-details-offset {
    transform: translateX(1rem);
}

.contact-details-offset h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-method p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 600;
}

.method-note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.contact-visual-section {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image-offset img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-text-overlap {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(1.5rem);
}

.contact-text-overlap h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-text-overlap p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-reasons {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

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

.reasons-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.reason-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.map-placeholder {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
    text-align: center;
}

.map-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-section-offset {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

.faq-section-offset h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.thanks-hero {
    padding: 10rem 1.5rem 6rem;
    background: var(--bg-light);
    text-align: center;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-confirmation {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps-section {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}

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

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

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.thanks-resources {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}

.thanks-resources h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.resource-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.resource-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-cta {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.thanks-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}

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

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        flex-direction: row;
        gap: 2rem;
    }

    .hero-text-block h1 {
        font-size: 3.5rem;
    }

    .intro-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .intro-right-visual {
        max-width: 400px;
    }

    .philosophy-overlap {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .philosophy-card {
        max-width: 600px;
    }

    .philosophy-image-offset {
        max-width: 500px;
    }

    .services-grid-irregular {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .card-large {
        width: 100%;
    }

    .trust-section-diagonal {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .trust-stats {
        flex-direction: row;
    }

    .testimonial-asymmetric {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .testimonial-quote {
        max-width: 600px;
    }

    .process-steps-irregular {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        width: calc(50% - 1rem);
    }

    .gallery-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gallery-item {
        width: calc(50% - 0.75rem);
    }

    .item-large {
        width: 100%;
    }

    .item-wide {
        width: 100%;
    }

    .cta-sticky-wrapper {
        display: block;
    }

    .footer-main {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        width: calc(25% - 1.5rem);
    }

    .story-asymmetric {
        flex-direction: row;
        align-items: flex-start;
        gap: 5rem;
    }

    .story-right-visual {
        max-width: 400px;
    }

    .values-grid-irregular {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 1rem);
    }

    .team-diagonal {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .team-visual {
        max-width: 500px;
    }

    .testimonials-irregular {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-block {
        width: calc(33.333% - 1.5rem);
    }

    .contact-visual-section {
        flex-direction: row-reverse;
        align-items: center;
        gap: 4rem;
    }

    .contact-image-offset {
        max-width: 500px;
    }

    .reasons-grid-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-card {
        width: calc(50% - 1rem);
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        width: calc(33.333% - 1.5rem);
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

    .resource-card {
        width: calc(33.333% - 1.5rem);
    }
}

@media (min-width: 1024px) {
    .hero-text-block h1 {
        font-size: 4rem;
    }

    .section-header-offset h2,
    .section-title-offset,
    .section-title-center {
        font-size: 2.8rem;
    }

    .service-card {
        width: calc(33.333% - 1.5rem);
    }

    .reason-card {
        width: calc(25% - 1.5rem);
    }
}
