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

:root {
    --primary-green: #2d5016;
    --light-green: #4a7c2c;
    --pale-green: #e8f3e0;
    --dark-gray: #2a2a2a;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --accent-brown: #8b6f47;
    --text-color: #333333;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.asymmetric-header {
    background-color: var(--white);
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-items {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-items a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-items a:hover {
    color: var(--primary-green);
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--medium-gray);
    padding: 6px 12px;
    background-color: var(--light-gray);
    border-radius: 4px;
    font-weight: 500;
}

.hero-asymmetric {
    background-color: var(--pale-green);
    padding: 80px 40px;
}

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

.hero-text-block {
    flex: 1;
    padding-left: 80px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
}

.cta-hero:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
}

.hero-image-block {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: var(--light-gray);
}

.hero-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.offset-intro {
    padding: 100px 40px;
    background-color: var(--white);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto 0 120px;
}

.intro-narrow h2 {
    font-size: 42px;
    color: var(--dark-gray);
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.staggered-benefits {
    padding: 80px 40px;
    background-color: var(--light-gray);
}

.benefit-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefit-card.left-aligned {
    margin-left: 50px;
}

.benefit-card.right-aligned {
    margin-right: 50px;
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    background-color: var(--white);
}

.benefit-image img {
    width: 100%;
    border-radius: 8px;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.services-asymmetric {
    padding: 100px 40px;
    background-color: var(--white);
}

.services-header-offset {
    max-width: 800px;
    margin: 0 auto 60px 100px;
}

.services-header-offset h2 {
    font-size: 48px;
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.services-grid-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card.large-card {
    flex-basis: calc(60% - 15px);
}

.service-card.medium-card {
    flex-basis: calc(50% - 15px);
}

.service-card.small-card {
    flex-basis: calc(40% - 15px);
}

.service-visual {
    margin-bottom: 20px;
    background-color: var(--light-gray);
}

.service-visual img {
    width: 100%;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 28px;
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: var(--light-green);
}

.trust-offset {
    padding: 100px 40px;
    background-color: var(--pale-green);
}

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

.trust-content h2 {
    font-size: 42px;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonials-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    flex-basis: calc(50% - 20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card.elevated {
    margin-top: -20px;
}

.testimonial-card.sunken {
    margin-top: 20px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--medium-gray);
    font-weight: 600;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: var(--light-gray);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 120px 0 auto;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    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-green);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
}

.submit-btn:hover {
    background-color: var(--light-green);
}

.final-cta-offset {
    padding: 100px 40px;
    background-color: var(--primary-green);
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto 0 150px;
    text-align: left;
}

.cta-content-irregular h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-irregular p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--white);
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
}

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

.footer-asymmetric {
    background-color: var(--dark-gray);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
}

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

.cookie-btn.accept:hover {
    background-color: var(--light-green);
}

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

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

.about-hero-offset {
    padding: 80px 40px;
    background-color: var(--pale-green);
}

.about-intro-block {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.about-intro-block h1 {
    font-size: 52px;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 800;
}

.intro-lead {
    font-size: 22px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.about-story-asymmetric {
    padding: 100px 40px;
    background-color: var(--white);
}

.story-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-block.left-offset {
    margin-left: 80px;
}

.story-block.right-offset {
    margin-right: 80px;
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background-color: var(--light-gray);
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.values-irregular {
    padding: 100px 40px;
    background-color: var(--light-gray);
}

.values-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.values-header h2 {
    font-size: 44px;
    color: var(--dark-gray);
    font-weight: 700;
}

.values-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    flex-basis: calc(50% - 15px);
}

.value-card.elevated {
    margin-top: -30px;
}

.value-card.sunken {
    margin-top: 30px;
}

.value-card h3 {
    font-size: 26px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.team-offset {
    padding: 100px 40px;
    background-color: var(--white);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px 120px;
}

.team-intro h2 {
    font-size: 42px;
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.team-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.team-member {
    flex-basis: 300px;
}

.team-member.offset-up {
    margin-top: -40px;
}

.member-image {
    margin-bottom: 20px;
    background-color: var(--light-gray);
}

.member-image img {
    width: 100%;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--medium-gray);
}

.approach-section {
    padding: 100px 40px;
    background-color: var(--pale-green);
}

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

.approach-content-offset h2 {
    font-size: 44px;
    color: var(--dark-gray);
    margin-bottom: 60px;
    font-weight: 700;
}

.approach-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    flex-basis: calc(50% - 15px);
}

.step-card.offset-down {
    margin-top: 40px;
}

.step-card.offset-up {
    margin-top: -40px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--pale-green);
    display: block;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 14px;
    font-weight: 700;
}

.step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.cta-about-offset {
    padding: 100px 40px;
    background-color: var(--primary-green);
}

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

.cta-about-content h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--white);
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
}

.cta-btn:hover {
    background-color: var(--pale-green);
}

.services-hero-offset {
    padding: 80px 40px;
    background-color: var(--pale-green);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.services-intro h1 {
    font-size: 52px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 800;
}

.services-lead {
    font-size: 20px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.services-detailed-asymmetric {
    padding: 100px 40px;
    background-color: var(--white);
}

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-detail-block.left-heavy {
    margin-left: 60px;
}

.service-detail-block.right-heavy {
    margin-right: 60px;
    flex-direction: row-reverse;
}

.service-detail-block.centered {
    flex-direction: column;
    align-items: flex-start;
}

.service-detail-visual {
    flex: 1;
    background-color: var(--light-gray);
}

.service-detail-visual img {
    width: 100%;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.service-pricing-box {
    background-color: var(--pale-green);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--medium-gray);
    display: block;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.price-note {
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 8px;
}

.service-comparison-offset {
    padding: 100px 40px;
    background-color: var(--light-gray);
}

.comparison-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.comparison-intro h2 {
    font-size: 40px;
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-weight: 700;
}

.comparison-intro p {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.comparison-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.comparison-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    flex: 1;
}

.comparison-card.elevated {
    margin-top: -20px;
}

.comparison-card h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 700;
}

.comparison-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.comparison-link {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
}

.comparison-link:hover {
    text-decoration: underline;
}

.services-cta-offset {
    padding: 100px 40px;
    background-color: var(--primary-green);
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto 0 150px;
    text-align: left;
}

.services-cta-content h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-hero-offset {
    padding: 80px 40px;
    background-color: var(--pale-green);
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.contact-intro h1 {
    font-size: 52px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-lead {
    font-size: 20px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-content-asymmetric {
    padding: 100px 40px;
    background-color: var(--white);
}

.contact-info-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.info-block {
    flex: 1;
    margin-left: 80px;
}

.info-block h2 {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    background-color: var(--light-gray);
    padding: 60px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-note {
    font-size: 17px;
    color: var(--medium-gray);
    text-align: center;
    font-weight: 600;
}

.contact-faq-offset {
    padding: 100px 40px;
    background-color: var(--light-gray);
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.faq-intro h2 {
    font-size: 42px;
    color: var(--dark-gray);
    font-weight: 700;
}

.faq-list-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    flex-basis: calc(50% - 15px);
}

.faq-item.offset-right {
    margin-right: -40px;
}

.faq-item.offset-left {
    margin-left: -40px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.contact-note-offset {
    padding: 100px 40px;
    background-color: var(--white);
}

.note-content {
    max-width: 800px;
    margin: 0 120px 0 auto;
}

.note-content h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.note-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.contact-checklist {
    list-style: none;
    margin: 24px 0;
    padding-left: 0;
}

.contact-checklist li {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.contact-checklist li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 20px;
}

.thanks-hero-offset {
    padding: 100px 40px;
    background-color: var(--pale-green);
}

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

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

.thanks-content-asymmetric h1 {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.thanks-service-info {
    margin-bottom: 40px;
}

.selected-service-display {
    font-size: 17px;
    color: var(--primary-green);
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: 6px;
    display: inline-block;
}

.thanks-next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 36px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.steps-list-offset {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: var(--white);
    padding: 25px;
    border-radius: 6px;
}

.step-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: 700;
}

.step-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.thanks-additional-info {
    padding: 100px 40px;
    background-color: var(--white);
}

.additional-content-offset {
    max-width: 800px;
    margin: 0 auto 0 120px;
}

.additional-content-offset h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.additional-content-offset p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.preparation-list {
    list-style: none;
    margin: 24px 0;
}

.preparation-list li {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.preparation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.legal-page-offset {
    padding: 80px 40px;
    background-color: var(--white);
}

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

.legal-content h1 {
    font-size: 44px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 6px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-green);
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 10px;
}

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

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

.legal-date {
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 50px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-content-offset,
    .benefit-card,
    .story-block,
    .service-detail-block,
    .contact-info-offset {
        flex-direction: column;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .services-grid-irregular .service-card {
        flex-basis: 100%;
    }

    .team-grid-asymmetric {
        flex-wrap: wrap;
    }

    .approach-steps-irregular .step-card,
    .values-grid-offset .value-card,
    .comparison-cards .comparison-card,
    .faq-list-asymmetric .faq-item,
    .testimonials-irregular .testimonial-card {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    .nav-items {
        gap: 15px;
        font-size: 14px;
    }

    .hero-text-block h1,
    .about-intro-block h1,
    .services-intro h1,
    .contact-intro h1 {
        font-size: 36px;
    }

    .intro-narrow h2,
    .services-header-offset h2,
    .trust-content h2 {
        font-size: 32px;
    }

    .intro-narrow,
    .services-header-offset,
    .trust-content,
    .team-intro,
    .approach-content-offset,
    .info-block,
    .note-content,
    .additional-content-offset {
        margin-left: 0;
        margin-right: 0;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}