:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --dark-bg: #34495e;
    --text-color: #333;
    --light-text: #7f8c8d;
    --white: #ffffff;
    --success-color: #28a745;
    --border-color: #bdc3c7;
}

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

html {
    scroll-behavior: smooth;
}

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);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

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

.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 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.brand-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.ad-disclosure {
    padding: 0.5rem 1rem;
    background-color: var(--light-bg);
    color: var(--text-color);
    font-size: 0.85rem;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-offset {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.hero-text-block {
    flex: 1;
    padding-left: 3rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.hero-image-offset {
    flex: 1;
    margin-top: -2rem;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-asymmetric {
    padding: 5rem 2rem;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.content-block-left {
    flex: 1.2;
    padding-right: 2rem;
}

.content-block-left h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-block-left p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
}

.content-block-right-offset {
    flex: 0.8;
    margin-top: 3rem;
}

.highlight-box {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.custom-list {
    list-style: none;
}

.custom-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.custom-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.visual-break {
    margin: 3rem 0;
}

.image-overlay-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.image-overlay-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem 3rem;
    border-radius: 8px;
}

.overlay-text h3 {
    font-size: 2.5rem;
    margin: 0;
}

.services-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

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

.section-header-offset {
    margin-bottom: 3rem;
    margin-left: 5rem;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.offset-top {
    margin-top: 2rem;
}

.service-card.offset-bottom {
    margin-bottom: 2rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--dark-bg);
}

.form-section-offset {
    padding: 5rem 2rem;
}

.form-wrapper-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-left: 10%;
}

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

.form-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.form-intro p {
    color: var(--light-text);
}

.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(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background-color: #2980b9;
}

.trust-section {
    padding: 5rem 2rem;
    background: linear-gradient(to right, var(--light-bg) 0%, var(--white) 100%);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

.testimonial-card.offset-left {
    margin-left: 0;
    margin-right: auto;
}

.testimonial-card.offset-right {
    margin-left: auto;
    margin-right: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.info-section-split {
    padding: 5rem 2rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-left {
    flex: 1;
}

.split-left h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-left p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.split-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-section-floating {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.cta-box-offset {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    margin-right: 15%;
}

.cta-box-offset h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--light-bg);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff8dc;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.disclaimer-box p {
    line-height: 1.8;
    color: var(--text-color);
}

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

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

.footer-block h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-block p {
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

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

.page-hero-offset {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: var(--white);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro-asymmetric {
    padding: 5rem 2rem;
}

.content-offset-right {
    max-width: 800px;
    margin-left: 10%;
}

.content-offset-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-offset-right p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.image-offset-left {
    flex: 1;
    margin-top: -3rem;
}

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

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

.section-title-offset {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    margin-left: 3rem;
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.value-card.offset-1 {
    margin-left: 2rem;
}

.value-card.offset-2 {
    margin-right: 2rem;
}

.value-card.offset-3 {
    margin-left: 4rem;
}

.value-card.offset-4 {
    margin-right: 4rem;
}

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

.value-card p {
    line-height: 1.7;
    color: var(--text-color);
}

.story-section-split {
    padding: 5rem 2rem;
}

.split-container-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-left-image {
    flex: 1;
}

.split-left-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-right-content {
    flex: 1;
}

.split-right-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-right-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.expertise-content-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-right: 10%;
}

.expertise-content-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-content-offset p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    margin: 2rem 0;
}

.expertise-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.centered-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.approach-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.approach-block.offset-top {
    margin-top: 2rem;
}

.approach-block.offset-bottom {
    margin-bottom: 2rem;
}

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

.approach-block p {
    line-height: 1.7;
    color: var(--text-color);
}

.cta-about-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.cta-wrapper-offset {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    margin-left: 15%;
}

.cta-wrapper-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-wrapper-offset p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--light-bg);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-intro {
    padding: 3rem 2rem;
}

.intro-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
}

.intro-content-asymmetric h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-content-asymmetric p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-item-asymmetric {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-item-asymmetric.offset-right {
    margin-left: 5%;
}

.service-item-asymmetric.offset-left {
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0.8;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-details {
    flex: 1.2;
    padding: 2.5rem;
}

.service-details h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-details p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-details h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.process-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

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

.step-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
}

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

.step-card.offset-2 {
    margin-bottom: 2rem;
}

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

.step-card.offset-4 {
    margin-bottom: 2rem;
}

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

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

.step-card p {
    line-height: 1.6;
    color: var(--text-color);
}

.contact-section-asymmetric {
    padding: 5rem 2rem;
}

.contact-layout-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-offset {
    flex: 1;
    padding-right: 2rem;
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info-offset p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.contact-note {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    line-height: 1.7;
}

.contact-image-offset {
    flex: 1;
    margin-top: 3rem;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.location-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.location-info-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-text h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.location-text p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.transport-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.transport-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.transport-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.location-visual {
    flex: 1;
}

.map-placeholder {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border-color);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-contact-section {
    padding: 5rem 2rem;
}

.faq-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.faq-item.offset-left {
    margin-right: 10%;
}

.faq-item.offset-right {
    margin-left: 10%;
}

.faq-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-color);
}

.faq-item a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cta-contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.cta-wrapper-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-wrapper-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-wrapper-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.success-icon {
    margin-bottom: 2rem;
}

.success-icon svg {
    margin: 0 auto;
    display: block;
}

.thanks-content-centered h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--text-color);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    line-height: 1.7;
    color: var(--text-color);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.additional-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.additional-info p {
    margin: 0;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: var(--white);
}

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

.container-legal h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.container-legal h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.container-legal h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.container-legal h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.container-legal p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.container-legal ul,
.container-legal ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.container-legal li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.container-legal a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-wrapper,
    .container-fluid,
    .split-container,
    .split-container-reverse,
    .contact-layout-split,
    .location-info-asymmetric {
        flex-direction: column;
    }

    .hero-text-block,
    .content-block-left,
    .content-block-right-offset,
    .split-left,
    .split-right,
    .split-left-image,
    .split-right-content,
    .contact-info-offset,
    .contact-image-offset {
        padding: 0;
        margin: 0;
    }

    .service-item-asymmetric {
        flex-direction: column;
    }

    .service-item-asymmetric.offset-left {
        flex-direction: column;
    }

    .nav-list {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .cta-wrapper-offset,
    .intro-content-asymmetric {
        margin-left: 0;
        margin-right: 0;
    }

    .section-header-offset,
    .section-title-offset {
        margin-left: 0;
    }

    .value-card {
        margin: 0 !important;
    }

    .approach-block {
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .service-card,
    .value-card,
    .approach-block,
    .step-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}