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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-content a {
    color: #8fc9a3;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #3a7a3d;
}

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

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

.nav-asymmetric {
    background-color: #ffffff;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-offset {
    margin-right: auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #e8ede9;
}

.hero-image-offset {
    position: absolute;
    right: -5%;
    top: 8%;
    width: 58%;
    height: 75%;
    z-index: 1;
}

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

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin-left: 8%;
    padding: 60px 40px;
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.15;
    color: #1a3a1b;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-offset {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.cta-offset:hover {
    background-color: #3a7a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.intro-diagonal {
    padding: 120px 40px;
    background-color: #ffffff;
}

.content-overlap {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.text-block-left {
    flex: 1;
    padding-right: 40px;
}

.text-block-left h2 {
    font-size: 38px;
    color: #1a3a1b;
    margin-bottom: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.text-block-left p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-block-right {
    flex: 0 0 420px;
    margin-top: -60px;
    background-color: #e8ede9;
    border-radius: 8px;
}

.image-block-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.services-stagger {
    padding: 100px 40px 120px;
    background: linear-gradient(135deg, #f5f8f6 0%, #e8ede9 100%);
}

.section-title-offset {
    font-size: 44px;
    color: #1a3a1b;
    margin-bottom: 60px;
    margin-left: 12%;
    font-weight: 800;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card-1 {
    width: calc(35% - 20px);
    margin-top: 20px;
}

.service-card-2 {
    width: calc(40% - 20px);
    margin-top: -30px;
}

.service-card-3 {
    width: calc(38% - 20px);
    margin-top: 50px;
}

.service-card-4 {
    width: calc(42% - 20px);
    margin-top: -20px;
}

.service-card-5 {
    width: calc(36% - 20px);
    margin-top: 30px;
}

.service-card-6 {
    width: calc(39% - 20px);
    margin-top: -10px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(44, 95, 45, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8ede9;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 22px;
    color: #1a3a1b;
    margin: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 24px 20px;
    line-height: 1.7;
    flex: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #2c5f2d;
    margin: 0 24px 16px;
}

.btn-service {
    margin: 0 24px 24px;
    padding: 12px 28px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #3a7a3d;
}

.btn-service.selected {
    background-color: #1a4a1c;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: #1a3a1b;
}

.form-container-asymmetric {
    max-width: 640px;
    margin: 0 auto 0 15%;
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 10px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.25);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-container-asymmetric p {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
}

.form-container-asymmetric input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-container-asymmetric input:focus {
    outline: none;
    border-color: #2c5f2d;
}

.selected-service-display {
    padding: 14px 16px;
    margin-bottom: 20px;
    background-color: #f5f8f6;
    border-radius: 6px;
    font-size: 15px;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3a7a3d;
}

.trust-block {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 42px;
    color: #1a3a1b;
    margin-bottom: 24px;
    font-weight: 800;
}

.trust-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-offset {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #2c5f2d;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #666;
    text-align: center;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #8fc9a3;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #888;
    font-style: italic;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.about-hero-offset {
    padding: 80px 40px 60px;
    background-color: #e8ede9;
    position: relative;
    overflow: hidden;
}

.about-text-overlap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text-overlap h1 {
    font-size: 52px;
    color: #1a3a1b;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-text-overlap p {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 700px;
    line-height: 1.7;
}

.about-image-diagonal {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 50%;
    height: 60%;
    z-index: 1;
    opacity: 0.3;
}

.about-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.story-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.story-content-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.story-block-1 {
    flex: 1 1 55%;
    padding-right: 40px;
}

.story-block-1 h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-block-1 p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-block-2 {
    flex: 1 1 35%;
    margin-top: -40px;
    background-color: #e8ede9;
    border-radius: 8px;
}

.story-block-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.story-block-3 {
    flex: 1 1 100%;
    margin-top: 20px;
}

.story-block-3 p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-section-offset {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f8f6 0%, #e8ede9 100%);
}

.approach-section-offset h2 {
    font-size: 42px;
    color: #1a3a1b;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1 1 30%;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.approach-item-1 {
    margin-top: 20px;
}

.approach-item-2 {
    margin-top: -30px;
}

.approach-item-3 {
    margin-top: 40px;
}

.approach-item h3 {
    font-size: 24px;
    color: #1a3a1b;
    margin-bottom: 16px;
    font-weight: 700;
}

.approach-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.team-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.team-content {
    max-width: 1100px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 40px;
    color: #1a3a1b;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 50px;
    line-height: 1.8;
}

.team-image-offset {
    margin-left: 10%;
    background-color: #e8ede9;
    border-radius: 8px;
}

.team-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-asymmetric {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.values-asymmetric h2 {
    font-size: 42px;
    color: #1a3a1b;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.values-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 36px 40px;
    border-left: 5px solid #2c5f2d;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 26px;
    color: #1a3a1b;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.services-hero {
    padding: 80px 40px;
    background-color: #e8ede9;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    color: #1a3a1b;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero p {
    font-size: 19px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detail-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-detail-1 {
    margin-left: 0;
}

.service-detail-2 {
    margin-left: 8%;
}

.service-detail-3 {
    margin-left: 0;
}

.service-detail-4 {
    margin-left: 12%;
}

.service-detail-5 {
    margin-left: 0;
}

.service-detail-6 {
    margin-left: 6%;
}

.service-detail-image {
    flex: 0 0 400px;
    background-color: #e8ede9;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a3a1b;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.price-box {
    margin: 24px 0;
    padding: 16px 20px;
    background-color: #f5f8f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 30px;
    color: #2c5f2d;
    font-weight: 800;
}

.contact-hero-offset {
    padding: 80px 40px 60px;
    background-color: #e8ede9;
    text-align: center;
}

.contact-hero-offset h1 {
    font-size: 48px;
    color: #1a3a1b;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero-offset p {
    font-size: 19px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-info-block {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1 1 30%;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-item-1 {
    margin-top: 0;
}

.info-item-2 {
    margin-top: 30px;
}

.info-item-3 {
    margin-top: -20px;
}

.info-item h3 {
    font-size: 24px;
    color: #1a3a1b;
    margin-bottom: 16px;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-visual {
    margin-left: 8%;
    background-color: #e8ede9;
    border-radius: 8px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.contact-note {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #f5f8f6;
    border-radius: 8px;
    border-left: 5px solid #2c5f2d;
}

.note-content h2 {
    font-size: 28px;
    color: #1a3a1b;
    margin-bottom: 20px;
    font-weight: 700;
}

.note-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.thanks-section-asymmetric {
    padding: 100px 40px;
    background-color: #f9f9f9;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content-offset h1 {
    font-size: 48px;
    color: #1a3a1b;
    margin-bottom: 24px;
    font-weight: 800;
}

.thanks-content-offset p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 20px 24px;
    background-color: #f5f8f6;
    border-radius: 6px;
    margin-bottom: 32px;
    border-left: 4px solid #2c5f2d;
}

.thanks-service-info p {
    margin: 0;
    font-size: 16px;
    color: #2c5f2d;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #3a7a3d;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

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

.thanks-visual {
    position: fixed;
    right: 5%;
    top: 20%;
    width: 35%;
    height: 50%;
    z-index: -1;
    opacity: 0.2;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.next-steps-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.next-steps-section h2 {
    font-size: 42px;
    color: #1a3a1b;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 30%;
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.step-item h3 {
    font-size: 22px;
    color: #1a3a1b;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a3a1b;
    margin-bottom: 32px;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a3a1b;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
    line-height: 1.9;
}

.legal-content li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

.legal-content strong {
    color: #1a3a1b;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        width: calc(50% - 20px);
        margin-top: 0;
    }

    .service-detail {
        flex-direction: column;
        margin-left: 0;
    }

    .service-detail-2,
    .service-detail-4,
    .service-detail-6 {
        margin-left: 0;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-image-offset {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    .hero-text-block {
        margin-left: 0;
        padding: 40px 30px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .content-overlap {
        flex-direction: column;
        gap: 40px;
    }

    .image-block-right {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 0;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        width: 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

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

    .approach-item-1,
    .approach-item-2,
    .approach-item-3 {
        margin-top: 0;
    }

    .contact-info-block {
        flex-direction: column;
    }

    .info-item-1,
    .info-item-2,
    .info-item-3 {
        margin-top: 0;
    }

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

    .thanks-visual {
        display: none;
    }
}