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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #ff8c42;
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --text-color: #333;
    --border-color: #ddd;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-offset-block {
    flex: 1;
    max-width: 600px;
    padding: 40px;
    background: white;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    margin-left: 5%;
    transform: translateY(-30px);
}

.hero-text-layer h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-cta-offset {
    margin-top: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.hero-visual-split {
    flex: 1;
    position: relative;
    margin-left: -100px;
}

.hero-visual-split img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-asymmetric {
    padding: 100px 20px;
    background: white;
}

.intro-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-left-block {
    flex: 1;
    transform: translateX(-40px);
}

.intro-left-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 30px 30px 0 var(--secondary-color);
}

.intro-right-text {
    flex: 1;
    padding: 40px;
}

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

.intro-right-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: transform 0.3s;
}

.cta-inline:hover {
    transform: translateX(10px);
}

.problem-amplify {
    padding: 120px 20px;
    background: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.problem-offset-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-text-narrow {
    flex: 2;
}

.problem-text-narrow h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.problem-text-narrow p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.problem-visual-layer {
    flex: 1;
}

.problem-stat {
    background: var(--secondary-color);
    padding: 40px;
    text-align: center;
    transform: rotate(-5deg);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
}

.trust-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.trust-card-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-card-shifted {
    transform: translateY(30px);
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-card p {
    color: #666;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial-offset-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-asymmetric {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-shifted {
    transform: translateY(40px);
}

.testimonial-asymmetric p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-asymmetric cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.services-reveal {
    padding: 100px 20px;
    background: white;
}

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

.services-intro-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

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

.service-offset-3 {
    transform: translateY(-10px);
}

.service-offset-4 {
    transform: translateY(30px);
}

.service-offset-5 {
    transform: translateY(-15px);
}

.service-offset-6 {
    transform: translateY(10px);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-select-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select-btn:hover {
    background: #1e4620;
}

.cta-sticky-trigger {
    padding: 100px 20px;
    background: var(--light-color);
}

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

.cta-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.benefits-asymmetric {
    padding: 100px 20px;
    background: white;
}

.benefits-layered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #f9f9f9;
    border-left: 5px solid var(--secondary-color);
}

.benefit-offset-left {
    transform: translateX(-30px) translateY(-20px);
}

.benefit-offset-right {
    transform: translateX(30px) translateY(20px);
}

.benefit-offset-center {
    transform: translateY(-10px);
}

.benefit-block h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-block p {
    color: #666;
    line-height: 1.7;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: white;
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro-text {
    flex: 1;
}

.form-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form-offset {
    flex: 1;
    background: white;
    padding: 40px;
    box-shadow: 20px 20px 0 rgba(255, 140, 66, 0.3);
    transform: translateY(20px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e67a32;
}

.final-cta-asymmetric {
    padding: 100px 20px;
    background: var(--light-color);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 45px;
    background: white;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.footer-asymmetric {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block a {
    color: #ccc;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: white;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 100px 20px;
    background: white;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values-section {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.value-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background: white;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.cta-section {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.services-list {
    padding: 80px 20px;
    background: white;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price-detail {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1e4620;
}

.services-cta {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    color: #666;
    line-height: 1.8;
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.map-placeholder {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #666;
    font-size: 1.1rem;
}

.contact-additional {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact-additional h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 150px 20px 80px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
}

.thanks-content {
    max-width: 600px;
    background: white;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.service-confirmation {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.service-confirmation p {
    color: #666;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e67a32;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-offset-block {
        margin-left: 0;
        transform: translateY(0);
    }

    .hero-visual-split {
        margin-left: 0;
        margin-top: 30px;
    }

    .hero-visual-split img {
        clip-path: none;
        height: 400px;
    }

    .intro-grid-offset,
    .problem-offset-container,
    .testimonial-offset-wrapper,
    .form-container-asymmetric,
    .story-container,
    .service-detail {
        flex-direction: column;
    }

    .intro-left-block {
        transform: translateX(0);
    }

    .intro-left-block img {
        box-shadow: 15px 15px 0 var(--secondary-color);
    }

    .contact-content {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.3s;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text-layer h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .intro-right-text h2,
    .problem-text-narrow h2 {
        font-size: 2rem;
    }

    .services-intro-offset h2 {
        font-size: 2.2rem;
    }

    .services-asymmetric-grid {
        gap: 30px;
    }

    .service-card {
        min-width: 100%;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5,
    .service-offset-6 {
        transform: translateY(0);
    }

    .benefit-offset-left,
    .benefit-offset-right,
    .benefit-offset-center {
        transform: translateY(0) translateX(0);
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }

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

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

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .service-detail-image img {
        height: 250px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
