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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a7c9a;
    --accent-color: #7aa8c4;
    --dark-color: #1a3a4d;
    --light-bg: #f4f7f9;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
}

ul {
    margin-bottom: 1.2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 77, 0.95);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

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

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

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

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo-block {
    flex: 0 0 auto;
}

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

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

.ad-disclosure {
    flex: 0 0 auto;
    order: 3;
    width: 100%;
}

.ad-label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: var(--light-bg);
    color: var(--text-light);
    font-size: 0.8rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

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

.hero-text-block {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-text-block p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image-offset {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin-top: -3rem;
    background-color: var(--light-bg);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(44, 95, 124, 0.3);
}

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

.intro-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
}

.intro-image-float {
    flex: 0 0 45%;
    min-width: 300px;
    position: relative;
    margin-top: 3rem;
    background-color: var(--accent-color);
}

.intro-image-float img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.intro-content-shifted {
    flex: 1;
    min-width: 300px;
    margin-left: -2rem;
    padding: 2rem;
    background-color: var(--white);
    z-index: 2;
}

.services-preview-scattered {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.section-header-offset {
    max-width: 700px;
    margin: 0 0 4rem 8%;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 0 0 calc(60% - 1rem);
    min-width: 300px;
    margin-top: -2rem;
}

.card-offset {
    flex: 0 0 calc(38% - 1rem);
    min-width: 280px;
    margin-top: 3rem;
}

.card-elevated {
    flex: 0 0 calc(45% - 1rem);
    min-width: 300px;
    margin-top: -1rem;
}

.card-wide {
    flex: 0 0 calc(53% - 1rem);
    min-width: 320px;
    margin-top: 2rem;
}

.card-stacked {
    flex: 0 0 calc(42% - 1rem);
    min-width: 300px;
    margin-top: -3rem;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.approach-section-layered {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.approach-content-block {
    flex: 1;
    min-width: 320px;
}

.phases-staggered {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.phase-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 6px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.phase-left {
    margin-left: 0;
}

.phase-right {
    margin-left: 4rem;
}

.phase-center {
    margin-left: 2rem;
}

.phase-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.phase-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.phase-item p {
    margin: 0;
    color: var(--text-light);
}

.approach-image-overlay {
    flex: 0 0 40%;
    min-width: 300px;
    position: relative;
    margin-top: -4rem;
    background-color: var(--accent-color);
}

.approach-image-overlay img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonials-scattered {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.testimonials-scattered h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-float-left {
    flex: 0 0 calc(45% - 1.25rem);
    min-width: 300px;
    margin-top: 0;
}

.testimonial-float-right {
    flex: 0 0 calc(50% - 1.25rem);
    min-width: 300px;
    margin-top: 3rem;
}

.testimonial-centered {
    flex: 0 0 calc(55% - 1.25rem);
    min-width: 300px;
    margin-top: -2rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.client-name {
    display: block;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.contact-form-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44, 95, 124, 0.3);
}

.disclaimer-section {
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 4rem 0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer-content p {
    margin: 0;
}

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

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

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

.footer-block h3,
.footer-block h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-block ul li {
    margin-bottom: 0.6rem;
}

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.page-hero-offset {
    max-width: 1400px;
    margin: 3rem auto 4rem;
    padding: 0 2rem;
}

.page-hero-content {
    max-width: 800px;
    margin-left: 8%;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.story-block-left {
    flex: 1;
    min-width: 300px;
}

.story-image-right {
    flex: 0 0 45%;
    min-width: 300px;
    margin-top: 2rem;
    background-color: var(--light-bg);
}

.story-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.values-section-scattered {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.values-section-scattered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 0 0 calc(48% - 1rem);
    min-width: 300px;
}

.value-pos-1 {
    margin-top: 0;
}

.value-pos-2 {
    margin-top: 3rem;
}

.value-pos-3 {
    margin-top: -2rem;
}

.value-pos-4 {
    margin-top: 2rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

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

.team-intro-offset {
    max-width: 700px;
    margin-bottom: 3rem;
    margin-left: 5%;
}

.team-content-block {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.team-content-block img {
    flex: 0 0 50%;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
}

.team-description {
    flex: 1;
    min-width: 300px;
}

.approach-philosophy-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.philosophy-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.philosophy-item:nth-child(2) {
    margin-left: 5%;
}

.philosophy-item:nth-child(3) {
    margin-left: 10%;
}

.philosophy-item p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.cta-section-offset {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.cta-content-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: 10%;
    text-align: center;
}

.cta-content-block h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-buttons-spread {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

.service-detail-block {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.service-layout-1 .service-detail-image {
    flex: 0 0 45%;
    min-width: 300px;
    order: 1;
}

.service-layout-1 .service-detail-content {
    flex: 1;
    min-width: 300px;
    order: 2;
}

.service-layout-2 .service-detail-image {
    flex: 0 0 40%;
    min-width: 300px;
    order: 2;
    margin-top: 3rem;
}

.service-layout-2 .service-detail-content {
    flex: 1;
    min-width: 300px;
    order: 1;
}

.service-layout-3 .service-detail-image {
    flex: 0 0 48%;
    min-width: 300px;
    order: 1;
    margin-top: -2rem;
}

.service-layout-3 .service-detail-content {
    flex: 1;
    min-width: 300px;
    order: 2;
}

.service-layout-4 .service-detail-image {
    flex: 0 0 42%;
    min-width: 300px;
    order: 2;
    margin-top: 2rem;
}

.service-layout-4 .service-detail-content {
    flex: 1;
    min-width: 300px;
    order: 1;
}

.service-layout-5 .service-detail-image {
    flex: 0 0 50%;
    min-width: 300px;
    order: 1;
}

.service-layout-5 .service-detail-content {
    flex: 1;
    min-width: 300px;
    order: 2;
    margin-top: -3rem;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
}

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.service-detail-content ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-detail-content ul li {
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
}

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

.process-section-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.process-step {
    flex: 0 0 calc(48% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-offset-1 {
    margin-top: 0;
}

.step-offset-2 {
    margin-top: 2rem;
}

.step-offset-3 {
    margin-top: -1rem;
}

.step-offset-4 {
    margin-top: 3rem;
}

.step-icon {
    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: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.contact-details-block {
    flex: 1;
    min-width: 300px;
}

.contact-details-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

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

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-image-offset {
    flex: 0 0 42%;
    min-width: 300px;
    margin-top: 3rem;
    background-color: var(--light-bg);
}

.contact-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.contact-approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-blocks-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.approach-block {
    flex: 0 0 calc(48% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.block-pos-1 {
    margin-top: 0;
}

.block-pos-2 {
    margin-top: 3rem;
}

.block-pos-3 {
    margin-top: -2rem;
    flex: 0 0 calc(65% - 1rem);
    margin-left: auto;
    margin-right: auto;
}

.approach-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-block p {
    color: var(--text-light);
    margin: 0;
}

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

.faq-section-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 5%;
}

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

.faq-item {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.faq-item:nth-child(odd) {
    margin-left: 0;
}

.faq-item:nth-child(even) {
    margin-left: 8%;
}

.faq-item h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

.legal-page-section {
    max-width: 900px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.legal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
}

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

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.legal-content p {
    color: var(--text-dark);
}

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

.thanks-content {
    flex: 1;
    min-width: 320px;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thanks-details {
    margin-bottom: 2rem;
}

.selected-service-info {
    padding: 1rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1.05rem;
}

.thanks-next-steps {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-image {
    flex: 0 0 40%;
    min-width: 300px;
    background-color: var(--light-bg);
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.additional-info-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.additional-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.info-cards-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    flex: 0 0 calc(32% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.info-card:nth-child(1) {
    margin-top: 0;
}

.info-card:nth-child(2) {
    margin-top: 2rem;
}

.info-card:nth-child(3) {
    margin-top: -1rem;
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        order: 2;
    }

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

    .service-card,
    .card-large,
    .card-offset,
    .card-elevated,
    .card-wide,
    .card-stacked {
        flex: 0 0 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .testimonial-float-left,
    .testimonial-float-right,
    .testimonial-centered {
        flex: 0 0 100%;
        margin-top: 0;
    }

    .value-card {
        flex: 0 0 100%;
        margin-top: 0;
    }

    .phase-left,
    .phase-right,
    .phase-center {
        margin-left: 0;
    }

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

    .section-header-offset,
    .page-hero-content {
        margin-left: 0;
    }

    .philosophy-item:nth-child(2),
    .philosophy-item:nth-child(3) {
        margin-left: 0;
    }

    .cta-content-block {
        margin-right: auto;
    }

    .faq-item:nth-child(even) {
        margin-left: 0;
    }

    .process-step,
    .approach-block {
        flex: 0 0 100%;
        margin-top: 0;
    }
}