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

:root {
    --primary-color: #2d5a2d;
    --secondary-color: #4a7c4a;
    --accent-color: #6b9b6b;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-offset: #f9faf8;
    --bg-dark: #2d3d2d;
    --border-color: #e0e5e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

.cookie-banner.active {
    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;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 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(--primary-color);
    color: var(--text-light);
}

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

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

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

.main-header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 3px;
    order: 3;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--bg-offset) 0%, #e8f0e8 100%);
    position: relative;
    padding: 4rem 2rem;
}

.hero-content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    padding: 2rem;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateX(60px) translateY(30px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    object-fit: cover;
}

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

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

.intro-image-left {
    flex: 0.9;
    transform: translateX(-40px);
}

.intro-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.intro-text-right {
    flex: 1.1;
    padding: 2rem;
}

.intro-text-right h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

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

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 3rem;
    transform: translateX(50px);
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 350px;
}

.card-offset {
    flex: 1 1 calc(38% - 1rem);
    min-width: 300px;
    transform: translateY(40px);
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
    min-width: 300px;
    transform: translateY(-30px);
}

.card-wide {
    flex: 1 1 calc(48% - 1rem);
    min-width: 350px;
}

.card-elevated {
    flex: 1 1 calc(48% - 1rem);
    min-width: 350px;
    transform: translateX(30px);
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

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

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-block-offset {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
}

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

.trust-text {
    flex: 1.2;
    transform: translateX(-30px);
}

.trust-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

.trust-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transform: translateY(20px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f9faf8 0%, #e8f0e8 100%);
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(-40px);
}

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

.form-intro h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    color: #666;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

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

.benefits-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.benefits-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.benefit-block {
    background-color: var(--bg-offset);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.block-1 {
    flex: 1 1 calc(55% - 1rem);
    min-width: 300px;
    transform: translateX(-20px);
}

.block-2 {
    flex: 1 1 calc(42% - 1rem);
    min-width: 300px;
    transform: translateY(30px);
}

.block-3 {
    flex: 1 1 calc(45% - 1rem);
    min-width: 300px;
    transform: translateY(-20px);
}

.block-4 {
    flex: 1 1 calc(52% - 1rem);
    min-width: 300px;
    transform: translateX(25px);
}

.benefit-block h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.page-hero-offset {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: translateX(-30px);
}

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

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-text-block {
    flex: 1.1;
    transform: translateY(30px);
}

.story-text-block h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image-offset {
    flex: 0.9;
    transform: translateX(40px) translateY(-20px);
}

.story-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    object-fit: cover;
}

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

.values-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.values-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(48% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-item:nth-child(1) {
    transform: translateX(-20px);
}

.value-item:nth-child(2) {
    transform: translateY(30px);
}

.value-item:nth-child(3) {
    transform: translateX(20px);
}

.value-item:nth-child(4) {
    transform: translateY(-20px);
}

.value-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy);
}

.value-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

.team-intro-offset {
    max-width: 900px;
    margin: 0 auto 3rem;
    transform: translateX(40px);
}

.team-intro-offset h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-intro-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.team-details {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.team-detail-block {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-offset);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-detail-block:first-child {
    transform: translateX(-30px) translateY(20px);
}

.team-detail-block:last-child {
    transform: translateX(30px) translateY(-20px);
}

.team-detail-block h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-detail-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

.process-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.process-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-steps-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(31% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy);
}

.step-offset-1 {
    transform: translateY(-20px);
}

.step-offset-2 {
    transform: translateX(20px) translateY(15px);
}

.step-offset-3 {
    transform: translateX(-15px);
}

.step-offset-4 {
    transform: translateY(25px);
}

.step-offset-5 {
    transform: translateX(25px) translateY(-15px);
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

.cta-content-offset {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-20px);
}

.cta-content-offset h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--text-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-heavy);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.service-detail-asymmetric {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 2rem;
}

.service-content-left {
    transform: translateX(-30px);
}

.service-content-right {
    transform: translateX(30px);
}

.service-detail-asymmetric h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-asymmetric p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-detail-asymmetric h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-detail-asymmetric ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-asymmetric li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.6rem;
}

.service-image-right,
.service-image-left {
    flex: 0.9;
}

.service-image-right {
    transform: translateX(40px) translateY(20px);
}

.service-image-left {
    transform: translateX(-40px) translateY(-20px);
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    object-fit: cover;
}

.pricing-block {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-offset);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.price-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 1rem;
    color: #666;
}

.service-cta-asymmetric {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-offset) 0%, #e8f0e8 100%);
}

.service-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    transform: translateX(-30px);
}

.service-cta-content h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-cta-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.contact-info-offset {
    flex: 1;
    transform: translateX(-30px) translateY(30px);
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-description-offset {
    flex: 1;
    transform: translateX(30px) translateY(-30px);
}

.contact-description-offset h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-description-offset p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-highlight {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--bg-offset);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-highlight h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-additional {
    padding: 4rem 2rem;
    background-color: var(--bg-offset);
}

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

.additional-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(48% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:nth-child(odd) {
    transform: translateX(-20px);
}

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

.faq-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy);
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    min-height: 70vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-offset) 0%, #e8f0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-offset);
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 2rem 1.5rem;
    background-color: var(--bg-offset);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-icon {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

.legal-page {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

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

.legal-container h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-update {
    font-size: 1rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.6rem;
}

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

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

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

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

.cookie-table th {
    background-color: var(--bg-offset);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-content-wrap,
    .intro-container,
    .story-container,
    .trust-content,
    .team-details,
    .contact-layout-asymmetric,
    .service-detail-asymmetric {
        flex-direction: column;
    }

    .hero-image-offset,
    .intro-image-left,
    .story-image-offset,
    .service-image-right,
    .service-image-left,
    .service-content-left,
    .service-content-right,
    .contact-info-offset,
    .contact-description-offset {
        transform: none;
    }

    .hero-text-block {
        transform: none;
        max-width: 100%;
    }

    .services-grid-asymmetric,
    .benefits-layout,
    .values-grid,
    .process-steps-asymmetric,
    .faq-grid-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-offset,
    .card-small,
    .card-wide,
    .card-elevated,
    .benefit-block,
    .value-item,
    .process-step,
    .faq-item {
        transform: none;
        flex: 1 1 100%;
    }

    .section-header-offset,
    .form-container-offset,
    .team-intro-offset,
    .page-hero-content,
    .service-cta-content {
        transform: none;
    }

    .hero-text-block h1,
    .page-hero-content h1,
    .thanks-container h1 {
        font-size: 2.5rem;
    }

    .intro-text-right h2,
    .section-header-offset h2,
    .trust-text h2,
    .story-text-block h2,
    .values-header h2,
    .team-intro-offset h2,
    .process-header h2,
    .benefits-header h2,
    .cta-content-offset h2,
    .service-detail-asymmetric h2,
    .service-cta-content h2,
    .contact-info-offset h2,
    .contact-description-offset h2,
    .additional-content h2,
    .legal-container h1 {
        font-size: 2rem;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        box-shadow: var(--shadow);
        padding: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .ad-disclosure {
        order: 1;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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