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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
}

.hero-section {
    background-color: #f8faf9;
    padding: 4rem 2rem 6rem;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    top: 3rem;
    background-color: #d4e3d7;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234a23;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.05rem;
    color: #4a5568;
}

.intro-right-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    top: 4rem;
}

.stat-card {
    background-color: #f1f5f2;
    padding: 2rem;
    border-left: 4px solid #2c5f2d;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

.services-preview {
    background-color: #fafbfa;
    padding: 5rem 2rem;
}

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

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

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.card-elevated {
    flex: 1 1 calc(45% - 1rem);
    position: relative;
    top: -2rem;
}

.card-offset-down {
    flex: 1 1 calc(50% - 1rem);
    margin-top: 3rem;
}

.card-elevated-more {
    flex: 1 1 calc(48% - 1rem);
    position: relative;
    top: -4rem;
}

.card-offset-left {
    flex: 1 1 calc(42% - 1rem);
    margin-left: 4rem;
}

.card-wide {
    flex: 1 1 100%;
    flex-direction: row;
}

.card-wide .service-image-wrapper {
    flex: 1;
}

.card-wide .service-content {
    flex: 1.5;
}

.service-image-wrapper {
    background-color: #d4e3d7;
    overflow: hidden;
}

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

.card-wide .service-image-wrapper img {
    height: 100%;
    min-height: 350px;
}

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

.service-content h3 {
    font-size: 1.5rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.btn-service {
    background-color: #e8f4e9;
    color: #2c5f2d;
    border: 1px solid #2c5f2d;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.approach-section {
    padding: 5rem 2rem;
}

.approach-overlay-block {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.approach-image-background {
    flex: 1;
    background-color: #d4e3d7;
}

.approach-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-text-overlay {
    flex: 1.2;
    background-color: #1a2e1c;
    color: #ffffff;
    padding: 4rem;
    position: relative;
    left: -3rem;
}

.approach-text-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.approach-text-overlay p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonials-scattered {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.testimonials-scattered h2 {
    font-size: 2.5rem;
    color: #1a2e1c;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-block {
    background-color: #f8faf9;
    padding: 2rem;
    border-left: 3px solid #2c5f2d;
}

.block-offset-1 {
    flex: 1 1 45%;
    margin-left: 0;
}

.block-offset-2 {
    flex: 1 1 48%;
    margin-top: 3rem;
}

.block-offset-3 {
    flex: 1 1 42%;
    margin-left: auto;
    position: relative;
    top: -2rem;
}

.testimonial-block p {
    font-size: 1.05rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: normal;
}

.contact-form-section {
    background-color: #f1f5f2;
    padding: 5rem 2rem;
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-block {
    flex: 0.8;
    position: relative;
    top: 2rem;
}

.form-intro-block h2 {
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
}

.form-intro-block p {
    font-size: 1.05rem;
    color: #4a5568;
}

.service-form {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    width: 100%;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a23;
}

.main-footer {
    background-color: #1a2e1c;
    color: #e8ecef;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p,
.footer-column a {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #a0aec0;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2e1c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie:hover {
    background-color: #234a23;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.about-hero {
    background-color: #f1f5f2;
    padding: 5rem 2rem;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

.story-image-left {
    flex: 1;
    background-color: #d4e3d7;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text-right {
    flex: 1.2;
    padding-left: 2rem;
}

.story-text-right h2 {
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
}

.story-text-right p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-values {
    background-color: #fafbfa;
    padding: 5rem 2rem;
}

.approach-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2e1c;
    margin-bottom: 4rem;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card-position-1 {
    flex: 1 1 calc(48% - 1rem);
}

.card-position-2 {
    flex: 1 1 calc(45% - 1rem);
    margin-top: 3rem;
}

.card-position-3 {
    flex: 1 1 calc(50% - 1rem);
    position: relative;
    top: -2rem;
}

.card-position-4 {
    flex: 1 1 calc(46% - 1rem);
    margin-left: auto;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-section-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-header {
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #1a2e1c;
}

.team-layout-asymmetric {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.team-text-block {
    flex: 1.3;
    position: relative;
    top: 2rem;
}

.team-text-block p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-image-offset {
    flex: 1;
    background-color: #d4e3d7;
}

.team-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.commitment-section {
    background-color: #f1f5f2;
    padding: 5rem 2rem;
}

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

.commitment-content-centered h2 {
    font-size: 2.5rem;
    color: #1a2e1c;
    margin-bottom: 2rem;
}

.commitment-content-centered p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 2rem;
}

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

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

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

.services-hero-alt {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.services-hero-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-text h1 {
    font-size: 3rem;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-text p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

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

.service-detail-block.block-left-image {
    flex-direction: row;
}

.service-detail-block.block-right-image {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 1.1rem;
    color: #1a2e1c;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

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

.service-detail-content li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
    background-color: #d4e3d7;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-pricing-box {
    background-color: #f1f5f2;
    padding: 1.5rem;
    border-left: 4px solid #2c5f2d;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    text-transform: uppercase;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0.3rem 0;
}

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

.service-approach-note {
    background-color: #fafbfa;
    padding: 4rem 2rem;
}

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

.approach-note-content h2 {
    font-size: 2rem;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
}

.approach-note-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-form-section {
    background-color: #f1f5f2;
    padding: 4rem 2rem;
}

.services-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.services-form-wrapper h2 {
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
}

.services-form-wrapper p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.services-form-wrapper .service-form {
    text-align: left;
}

.contact-hero {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

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

.contact-hero-content h1 {
    font-size: 3rem;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

.contact-main {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-layout-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 2rem;
}

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

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

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-image-offset {
    flex: 1;
    position: relative;
    top: 3rem;
    background-color: #d4e3d7;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-expectations {
    background-color: #fafbfa;
    padding: 5rem 2rem;
}

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

.expectations-content h2 {
    font-size: 2.5rem;
    color: #1a2e1c;
    margin-bottom: 3rem;
    text-align: center;
}

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

.expectation-step {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.expectation-step h3 {
    font-size: 1.3rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
}

.expectation-step p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-faq-compact {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-faq-compact h2 {
    font-size: 2.5rem;
    color: #1a2e1c;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a2e1c;
    margin-bottom: 0.8rem;
}

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

.thanks-hero {
    background-color: #f1f5f2;
    padding: 5rem 2rem;
}

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

.thanks-content-centered h1 {
    font-size: 3rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.thanks-details {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-info-block h2 {
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 1.5rem;
}

.thanks-info-block > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-service-reference {
    background-color: #f8faf9;
    padding: 2rem;
    border-left: 4px solid #2c5f2d;
    margin: 2rem 0;
}

.thanks-service-reference h3 {
    font-size: 1.2rem;
    color: #1a2e1c;
    margin-bottom: 0.8rem;
}

.thanks-service-reference p {
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 600;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #1a2e1c;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-meanwhile {
    background-color: #fafbfa;
    padding: 4rem 2rem;
}

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

.meanwhile-content h2 {
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 2rem;
    text-align: center;
}

.meanwhile-links {
    display: flex;
    gap: 2rem;
}

.meanwhile-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.meanwhile-card h3 {
    font-size: 1.5rem;
    color: #1a2e1c;
    margin-bottom: 1rem;
}

.meanwhile-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.thanks-contact-reminder {
    padding: 3rem 2rem;
}

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

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

.legal-page {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.legal-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a2e1c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

.legal-content a:hover {
    color: #234a23;
}

.legal-content strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
    }

    .hero-image-offset {
        top: 0;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-right-offset {
        top: 0;
    }

    .services-grid-asymmetric .service-card {
        flex: 1 1 100%;
        margin: 0;
        top: 0 !important;
    }

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

    .approach-overlay-block {
        flex-direction: column;
    }

    .approach-text-overlay {
        left: 0;
    }

    .testimonials-layout {
        flex-direction: column;
    }

    .testimonial-block {
        flex: 1 1 100%;
        margin: 0 !important;
        top: 0 !important;
    }

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

    .form-intro-block {
        top: 0;
    }

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

    .values-grid-scattered .value-card {
        flex: 1 1 100%;
        margin: 0 !important;
        top: 0 !important;
    }

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

    .team-text-block {
        top: 0;
    }

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

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

    .contact-image-offset {
        top: 0;
    }

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

    .meanwhile-links {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 1px solid #e8ecef;
        padding: 1rem 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }
}