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

:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1e4029;
    --secondary-color: #8b9d77;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d5f3f;
}

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

.asymmetric-header {
    position: relative;
    padding: 1.2rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.ad-notice {
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.brand-offset {
    transform: translateX(-15px);
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links-split a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.hero-content-left {
    flex: 1;
    padding-left: 3rem;
}

.hero-title-large {
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateX(25px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-asymmetric {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.intro-block-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text-narrow {
    flex: 1.2;
    padding-right: 4rem;
}

.intro-text-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

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

.intro-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(-30px) translateX(15px);
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--bg-white);
    object-fit: cover;
}

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

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 8rem;
}

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

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

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.card-left {
    margin-right: 8rem;
}

.card-right {
    margin-left: 8rem;
    flex-direction: row-reverse;
}

.card-center {
    margin: 0 auto;
    max-width: 900px;
    justify-content: center;
}

.service-image {
    flex: 1;
    min-width: 350px;
}

.service-image img {
    width: 100%;
    height: 320px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.service-content {
    flex: 1.3;
    padding: 2.5rem;
}

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

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

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

.btn-service {
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-diagonal {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
    position: relative;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.trust-content-overlap {
    max-width: 1400px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.trust-content-overlap h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.trust-points-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.item-offset-1 {
    transform: translateY(-20px);
}

.item-offset-2 {
    transform: translateY(10px);
}

.item-offset-3 {
    transform: translateY(-15px);
}

.trust-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.form-section-offset {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transform: translateX(-40px);
}

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

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

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

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.testimonials-scattered {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.testimonials-scattered h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-top: 3px solid var(--accent-color);
}

.card-position-1 {
    transform: translateY(-20px) translateX(-30px);
}

.card-position-2 {
    transform: translateY(15px);
}

.card-position-3 {
    transform: translateY(-10px) translateX(30px);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-angular {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    transform: skewY(-1deg);
    margin: 4rem 0;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    transform: skewY(1deg);
}

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

.cta-content p {
    font-size: 1.3rem;
    color: var(--bg-light);
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 6px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col-offset-1 {
    transform: translateX(-20px);
}

.footer-col-offset-2 {
    transform: translateX(10px);
}

.footer-col-offset-3 {
    transform: translateX(-5px);
}

.footer-col-offset-4 {
    transform: translateX(15px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--bg-light);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.about-hero-offset {
    padding: 5rem 2rem 3rem;
    background-color: var(--bg-light);
}

.about-intro-block {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 5rem;
}

.about-intro-block h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.6;
}

.story-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.story-content-overlap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

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

.story-image {
    flex: 1;
    transform: translateX(30px) translateY(-25px);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.values-diagonal {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.values-diagonal h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.values-grid-staggered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-bottom: 3px solid var(--primary-color);
}

.value-offset-1 {
    transform: translateY(-25px) translateX(-20px);
}

.value-offset-2 {
    transform: translateY(15px);
}

.value-offset-3 {
    transform: translateY(-10px) translateX(20px);
}

.value-offset-4 {
    transform: translateY(20px);
}

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

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

.team-scattered {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.team-scattered h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-position-1 {
    transform: translateY(-20px);
}

.member-position-2 {
    transform: translateY(10px);
}

.member-position-3 {
    transform: translateY(-15px);
}

.member-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 350px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

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

.approach-offset {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

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

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

.step-left {
    margin-right: 5rem;
}

.step-right {
    margin-left: 5rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 80px;
}

.step-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.services-hero-diagonal {
    padding: 5rem 2rem 3rem;
    background-color: var(--bg-light);
}

.services-intro-offset {
    max-width: 1000px;
    margin: 0 auto;
    padding-right: 5rem;
}

.services-intro-offset h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-detailed-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.service-layout-1 {
    margin-right: 4rem;
}

.service-layout-2 {
    margin-left: 4rem;
    flex-direction: row-reverse;
}

.service-layout-3 {
    margin-right: 4rem;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

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

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--bg-light);
    object-fit: cover;
}

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

.contact-intro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.contact-layout-diagonal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.contact-block {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.block-offset-1 {
    transform: translateY(-25px) translateX(-30px);
}

.block-offset-2 {
    transform: translateY(15px);
}

.block-offset-3 {
    transform: translateY(-10px) translateX(30px);
}

.contact-block h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.email-nonclickable {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-map-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    background-color: var(--bg-white);
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(45, 95, 63, 0.9);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 1rem;
    margin: 0;
}

.contact-cta-offset {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.thanks-section-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
    min-height: 60vh;
}

.thanks-content-offset {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content-offset h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.selected-service-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.selected-service-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.steps-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-position-1 {
    transform: translateY(-20px);
}

.step-position-2 {
    transform: translateY(10px);
}

.step-position-3 {
    transform: translateY(-15px);
}

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

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

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

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

.btn-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.legal-page-content {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.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: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

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

.legal-container ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

.legal-container a:hover {
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content-left {
        padding-left: 0;
    }

    .hero-image-right {
        transform: translateX(0);
    }

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

    .intro-text-narrow {
        padding-right: 0;
    }

    .intro-image-overlap {
        transform: translateY(0) translateX(0);
    }

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

    .card-left,
    .card-right {
        margin: 0;
    }

    .story-content-overlap {
        flex-direction: column;
    }

    .story-image {
        transform: translateX(0) translateY(0);
    }

    .service-detail {
        flex-direction: column;
    }

    .service-layout-1,
    .service-layout-2,
    .service-layout-3 {
        margin: 0;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.8rem;
    }

    .nav-links-split {
        gap: 1.5rem;
    }

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

    .section-header-offset {
        padding-left: 0;
    }

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