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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7856;
    --accent-color: #7ba888;
    --light-bg: #f4f7f5;
    --dark-text: #1a2e1f;
    --medium-text: #3d4f42;
    --light-text: #6b7c70;
    --white: #ffffff;
    --border-color: #d4e0d7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
}

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;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

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

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

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

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

.header-asymmetric {
    padding: 24px 40px;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

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

.ad-label {
    font-size: 12px;
    color: var(--light-text);
    background-color: var(--light-bg);
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 16px;
}

main {
    min-height: 60vh;
}

.hero-offset {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-content-left {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--dark-text);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 36px;
}

.hero-image-right {
    flex: 1 1 500px;
    background-color: var(--light-bg);
    margin-top: 60px;
    margin-left: -20px;
    overflow: hidden;
    border-radius: 8px;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.intro-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.intro-block-overlap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.text-segment {
    flex: 1 1 400px;
}

.text-segment h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-weight: 700;
}

.text-segment p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--medium-text);
}

.image-segment-float {
    flex: 1 1 350px;
    margin-top: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.image-segment-float img {
    width: 100%;
    height: 400px;
}

.insight-box-offset {
    max-width: 800px;
    padding: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    margin-left: auto;
    margin-right: 80px;
}

.insight-box-offset p {
    font-size: 20px;
    line-height: 1.6;
}

.trust-diagonal {
    background-color: var(--light-bg);
    padding: 120px 40px;
}

.trust-content-staggered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
}

.trust-text {
    flex: 1 1 500px;
}

.trust-text h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--dark-text);
    font-weight: 700;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 20px;
}

.trust-image-overlap {
    flex: 1 1 450px;
    margin-top: -60px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.trust-image-overlap img {
    width: 100%;
    height: 500px;
}

.services-stacked {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-title-offset {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 60px;
    color: var(--dark-text);
    font-weight: 700;
    margin-left: 80px;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-large {
    flex: 1 1 calc(66% - 16px);
    min-width: 400px;
}

.card-medium {
    flex: 1 1 calc(50% - 16px);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(33% - 22px);
    min-width: 300px;
}

.service-visual {
    width: 100%;
    height: 280px;
    background-color: var(--light-bg);
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

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

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

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

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

.testimonials-offset {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonials-offset h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 60px;
    color: var(--dark-text);
    font-weight: 700;
    text-align: center;
}

.testimonial-grid-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-card {
    flex: 1 1 300px;
    padding: 36px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:nth-child(2) {
    margin-top: 40px;
}

.testimonial-card:nth-child(3) {
    margin-top: 20px;
}

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

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

.form-section-diagonal {
    background-color: var(--light-bg);
    padding: 100px 40px;
    margin-top: 80px;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 120px;
    padding: 60px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-field label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.service-selected-display {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 12px;
}

.scientific-references {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.scientific-references h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

.scientific-references p {
    font-size: 16px;
    color: var(--medium-text);
    margin-bottom: 20px;
}

.references-list {
    list-style: none;
    padding: 0;
}

.references-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 12px;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: underline;
}

.references-list a:hover {
    color: var(--secondary-color);
}

.footer-asymmetric {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 80px 40px 30px;
    margin-top: 100px;
}

.footer-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

.about-hero-offset {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-content-staggered h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--dark-text);
    font-weight: 800;
}

.about-intro-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.text-block {
    flex: 1 1 500px;
}

.text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 24px;
}

.image-block-float {
    flex: 1 1 400px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.image-block-float img {
    width: 100%;
    height: 450px;
}

.values-diagonal {
    background-color: var(--light-bg);
    padding: 100px 40px;
    margin: 80px 0;
}

.values-diagonal h2 {
    max-width: 1400px;
    margin: 0 auto 60px;
    font-size: 42px;
    color: var(--dark-text);
    font-weight: 700;
}

.values-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.card-offset-left {
    margin-right: 40px;
}

.card-offset-right {
    margin-left: 40px;
    margin-top: 30px;
}

.card-center {
    margin-top: 20px;
}

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

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--medium-text);
}

.experience-stacked {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.experience-content-overlap {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.experience-text {
    flex: 1 1 500px;
}

.experience-text h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--dark-text);
    font-weight: 700;
}

.experience-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 24px;
}

.experience-image-diagonal {
    flex: 1 1 450px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    margin-left: -40px;
}

.experience-image-diagonal img {
    width: 100%;
    height: 500px;
}

.approach-asymmetric {
    background-color: var(--light-bg);
    padding: 100px 40px;
    margin: 80px 0;
}

.approach-asymmetric h2 {
    max-width: 1400px;
    margin: 0 auto 60px;
    font-size: 42px;
    color: var(--dark-text);
    font-weight: 700;
    text-align: center;
}

.approach-steps-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.step-block {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.step-large {
    flex: 1 1 calc(55% - 16px);
    min-width: 350px;
}

.step-medium {
    flex: 1 1 calc(45% - 16px);
    min-width: 300px;
}

.step-small {
    flex: 1 1 calc(40% - 16px);
    min-width: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.step-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.cta-section-offset {
    max-width: 1000px;
    margin: 100px auto 100px 120px;
    padding: 60px;
    background-color: var(--primary-color);
    border-radius: 8px;
}

.cta-content-diagonal {
    color: var(--white);
}

.cta-content-diagonal h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-diagonal p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

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

.services-hero-diagonal {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.services-hero-diagonal h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--medium-text);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-image-container {
    flex: 1 1 400px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 350px;
}

.service-text-content {
    flex: 1 1 450px;
}

.service-text-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 28px 0;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-unit {
    font-size: 16px;
    color: var(--light-text);
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

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

.cta-services-offset {
    max-width: 800px;
    margin: 100px auto 100px 80px;
    padding: 60px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.cta-services-offset h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

.cta-services-offset p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 32px;
}

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

.cta-button-alt:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.contact-hero-asymmetric h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-weight: 800;
}

.contact-hero-asymmetric p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--medium-text);
}

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

.contact-info-diagonal {
    max-width: 700px;
    margin-left: 80px;
    padding: 60px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-text);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 36px;
}

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

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

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

.contact-map-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

.contact-map-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--medium-text);
}

.contact-additional-offset {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.contact-additional-offset h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--dark-text);
    font-weight: 700;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 320px;
    padding: 32px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.faq-item:nth-child(2) {
    margin-top: 30px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.thanks-hero-center {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 32px;
}

.service-confirmation {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    padding: 16px;
    background-color: var(--light-bg);
    border-radius: 6px;
    margin-top: 24px;
}

.thanks-next-steps {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: var(--light-bg);
}

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

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.thanks-additional-resources {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.resource-card {
    flex: 1 1 300px;
    padding: 36px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 24px;
}

.resource-link {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.resource-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.legal-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 800;
}

.legal-updated {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 28px;
    color: var(--dark-text);
    font-weight: 700;
}

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

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

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

.legal-section a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero-offset {
        padding: 40px 20px;
    }

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

    .hero-content-left h1 {
        font-size: 36px;
    }

    .hero-image-right {
        margin-left: 0;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 32px;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .insight-box-offset {
        margin-right: 0;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 24px;
    }

    .cta-section-offset {
        margin-left: 20px;
    }

    .contact-info-diagonal {
        margin-left: 0;
    }

    .cta-services-offset {
        margin-left: 20px;
    }
}
