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

:root {
    --primary-color: #2D5F3F;
    --primary-dark: #1A3D28;
    --accent-color: #6B8E7F;
    --text-dark: #1F1F1F;
    --text-light: #4A4A4A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --highlight: #D4A574;
    --error: #C74B4B;
    --success: #4A7C59;
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: var(--primary-dark);
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta-mobile {
    display: none;
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-asymmetric {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero-text-block {
    flex: 1 1 500px;
    padding-right: 2rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--highlight);
    position: relative;
    display: inline-block;
}

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

.hero-visual-element {
    flex: 1 1 500px;
    position: relative;
    transform: translateY(-30px);
}

.hero-visual-element img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.btn-primary-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.4);
}

.intro-offset {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 0 0 10%;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.visual-break {
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: var(--bg-light);
}

.image-panel {
    flex: 1 1 50%;
    overflow: hidden;
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.text-panel {
    flex: 1 1 50%;
    padding: 4rem;
}

.text-panel h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
    margin-top: 1rem;
}

.btn-inline:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.story-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.story-block {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.8;
    transform: translateX(-20px);
}

.story-block:nth-child(even) {
    transform: translateX(20px);
}

.highlight-block {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 500;
}

.trust-markers {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    flex: 1 1 200px;
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.services-preview {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-card {
    flex: 1 1 350px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card.offset-top {
    transform: translateY(-20px);
}

.service-card.offset-bottom {
    transform: translateY(20px);
}

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

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

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight);
    margin: 1.5rem 0;
}

.btn-card {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-card:hover {
    background-color: var(--primary-dark);
}

.cta-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(45, 95, 63, 0.4);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 900;
    animation: slideIn 0.5s ease;
}

.cta-floating.show {
    display: flex;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
    }
    to {
        transform: translateX(0);
    }
}

.btn-floating {
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.btn-floating:hover {
    background-color: var(--highlight);
    color: var(--bg-white);
}

.benefits-asymmetric {
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: var(--bg-white);
}

.benefits-visual {
    flex: 1 1 45%;
    overflow: hidden;
}

.benefits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.benefits-content {
    flex: 1 1 55%;
    padding: 4rem;
}

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

.benefits-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

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

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
}

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

.testimonials-scattered {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial.left-aligned {
    margin-left: 0;
    margin-right: 15%;
}

.testimonial.right-aligned {
    margin-left: 15%;
    margin-right: 0;
}

.testimonial.center-aligned {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.author {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.form-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.form-wrapper-asymmetric {
    max-width: 800px;
    margin: 0 0 0 10%;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

.btn-submit,
.btn-submit-contact {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover,
.btn-submit-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.urgency-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

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

.urgency-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-urgency:hover {
    background-color: var(--highlight);
    color: var(--bg-white);
}

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

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

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

.brand-col {
    flex: 1 1 300px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.page-header-asymmetric {
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.header-content-offset {
    max-width: 800px;
    margin: 0 0 0 10%;
}

.header-content-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-intro {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

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

.values-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-block {
    flex: 1 1 45%;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-block.offset {
    transform: translateY(30px);
}

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

.team-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

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

.team-member {
    flex: 1 1 300px;
    text-align: center;
}

.team-member.offset-member {
    transform: translateY(40px);
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.mission-content-asymmetric {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.mission-text {
    flex: 1 1 50%;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-visual {
    flex: 1 1 50%;
    transform: translateY(-30px);
}

.mission-visual img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-asymmetric {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.stats-asymmetric h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.stats-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    flex: 1 1 200px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-item.large {
    flex: 1 1 400px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item.large .stat-number {
    font-size: 3rem;
}

.cta-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

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

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

.services-intro-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-detailed {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.service-full {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-content-left {
    flex: 1 1 65%;
    padding: 3rem;
}

.service-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-description ul {
    margin-bottom: 1.5rem;
}

.service-pricing-right {
    flex: 1 1 35%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.price-box {
    text-align: center;
    color: var(--bg-white);
}

.price-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
}

.btn-service:hover {
    background-color: var(--highlight);
    color: var(--bg-white);
}

.pricing-note {
    padding: 3rem 5%;
    background-color: var(--bg-white);
}

.pricing-note-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-services {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

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

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

.contact-info-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.contact-layout-asymmetric {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1 1 50%;
}

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

.contact-item {
    margin-bottom: 2rem;
}

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

.contact-visual {
    flex: 1 1 50%;
}

.contact-visual img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-form-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

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

.form-intro-contact p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span a {
    text-decoration: underline;
}

.faq-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

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

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

.faq-item:nth-child(even) {
    transform: translateX(10px);
}

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

.cta-contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

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

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

.thanks-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    min-height: 70vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.service-confirmation {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-info h2 {
    margin-bottom: 2rem;
}

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

.step {
    flex: 1 1 200px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.btn-primary {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
}

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

.thanks-note {
    background-color: var(--highlight);
    color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.thanks-resources {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.resources-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-resource {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-resource:hover {
    background-color: var(--primary-dark);
}

.page-header-legal {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

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

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

.legal-content {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

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

.legal-container h2 {
    margin-top: 2rem;
    color: var(--primary-color);
}

.legal-container h3 {
    margin-top: 1.5rem;
    color: var(--primary-dark);
}

.legal-container ul {
    margin-left: 2rem;
}

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

    h2 {
        font-size: 1.7rem;
    }

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

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

    .hero-visual-element {
        transform: translateY(0);
    }

    .visual-break,
    .benefits-asymmetric {
        flex-direction: column;
    }

    .image-panel,
    .benefits-visual {
        min-height: 400px;
    }

    .mission-content-asymmetric {
        flex-direction: column;
    }

    .mission-visual {
        transform: translateY(0);
    }

    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .service-full {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .intro-narrow {
        margin: 0;
    }

    .header-content-offset {
        margin: 0;
    }

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

    .text-panel,
    .benefits-content {
        padding: 2rem;
    }

    .testimonial.left-aligned,
    .testimonial.right-aligned {
        margin-left: 0;
        margin-right: 0;
    }

    .value-block.offset,
    .team-member.offset-member {
        transform: translateY(0);
    }

    .story-block,
    .faq-item {
        transform: translateX(0);
    }

    .form-row {
        flex-direction: column;
    }

    .cta-floating {
        flex-direction: column;
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-asymmetric {
        padding: 2rem 5%;
        min-height: 60vh;
    }

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

    .btn-primary-large,
    .btn-urgency {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .trust-number {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}