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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover {
    color: #e67e22;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin-left: 8%;
    margin-top: -60px;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 35px;
    color: #5d6d7e;
    line-height: 1.5;
}

.hero-image-overlay {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 55%;
    height: 85%;
    background-size: cover;
    background-position: center;
    background-color: #d5dbdb;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.intro-offset {
    display: flex;
    gap: 60px;
    padding: 100px 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-block {
    flex: 1;
    padding-left: 60px;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5d6d7e;
    line-height: 1.7;
}

.intro-image-float {
    flex: 0 0 400px;
    margin-top: 80px;
    transform: rotate(-2deg);
}

.intro-image-float img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.services-grid-asymmetric {
    padding: 120px 40px 80px;
    background-color: #f8f9fa;
    position: relative;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 70px;
    padding-left: 15%;
    color: #2c3e50;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 50px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.card-position-1 {
    width: 70%;
    margin-left: 5%;
}

.card-position-2 {
    width: 75%;
    margin-left: auto;
    margin-right: 8%;
}

.card-position-3 {
    width: 68%;
    margin-left: 12%;
}

.service-image {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
    position: relative;
}

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

.service-content {
    flex: 1;
    padding: 35px 40px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5d6d7e;
    line-height: 1.6;
}

.service-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #d35400;
    text-decoration: underline;
}

.why-choose-diagonal {
    padding: 100px 40px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.diagonal-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
    text-align: left;
    padding-left: 40px;
}

.features-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-block {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    flex: 0 1 calc(50% - 20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.feature-elevated {
    transform: translateY(-30px);
}

.feature-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e67e22;
}

.feature-block p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

.testimonials-staggered {
    padding: 100px 40px;
    background-color: #ffffff;
}

.testimonials-staggered h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.testimonial {
    background-color: #f8f9fa;
    padding: 35px 40px;
    border-radius: 6px;
    margin-bottom: 40px;
    border-left: 4px solid #e67e22;
    position: relative;
}

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

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

.testimonial p {
    font-size: 17px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.6;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    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: #e67e22;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e67e22;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-block a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #e67e22;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(52, 73, 94, 0.5);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5d6d7e;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.about-hero-offset {
    padding: 100px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.about-content-block {
    margin-left: 10%;
}

.about-content-block h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    color: #5d6d7e;
    line-height: 1.6;
}

.about-story-diagonal {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    align-items: center;
    background-color: #f8f9fa;
}

.story-image-wrap {
    flex: 0 0 450px;
    transform: translateY(-40px) rotate(-1deg);
}

.story-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.story-text-wrap {
    flex: 1;
}

.story-text-wrap h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text-wrap p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #5d6d7e;
    line-height: 1.7;
}

.values-staggered {
    padding: 100px 40px;
}

.values-staggered h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 6px;
    border-left: 5px solid #e67e22;
}

.value-elevated-1 {
    margin-left: 0;
    margin-right: 20%;
}

.value-elevated-2 {
    margin-left: 15%;
    margin-right: 5%;
}

.value-elevated-3 {
    margin-left: 5%;
    margin-right: 15%;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
}

.team-approach-offset {
    display: flex;
    gap: 70px;
    padding: 100px 40px;
    background-color: #ecf0f1;
    align-items: center;
}

.approach-text {
    flex: 1;
    padding-left: 40px;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #5d6d7e;
    line-height: 1.7;
}

.approach-visual {
    flex: 0 0 420px;
    transform: rotate(2deg);
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.commitment-block {
    padding: 100px 40px;
}

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

.commitment-inner h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.commitment-inner p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5d6d7e;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    margin-top: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-header-offset {
    padding: 80px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.services-header-offset h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    font-size: 17px;
    color: #5d6d7e;
    line-height: 1.6;
}

.services-detailed-staggered {
    padding: 60px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.card-left {
    margin-left: 0;
    margin-right: 8%;
}

.card-right {
    flex-direction: row-reverse;
    margin-left: 8%;
    margin-right: 0;
}

.service-detail-image {
    flex: 0 0 48%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5d6d7e;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.pricing-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #e67e22;
}

.btn-service {
    background-color: #e67e22;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.additional-services-offset {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.additional-services-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.additional-item {
    flex: 0 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.additional-item p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #5d6d7e;
}

.add-price {
    font-size: 18px;
    font-weight: 600;
    color: #e67e22;
}

.cta-services-block {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #ffffff;
}

.cta-services-block h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-services-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #e67e22;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-header-diagonal {
    padding: 80px 40px 60px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-header-diagonal h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-header-diagonal p {
    font-size: 18px;
    color: #5d6d7e;
    line-height: 1.6;
}

.contact-info-offset {
    display: flex;
    gap: 60px;
    padding: 60px 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.block-elevated {
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e67e22;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-visual {
    flex: 0 0 450px;
    transform: translateY(30px);
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.contact-approach-staggered {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.contact-approach-staggered h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.step-item {
    flex: 0 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

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

.step-offset-2 {
    margin-left: 5%;
}

.step-offset-3 {
    margin-right: 5%;
}

.step-offset-4 {
    margin-left: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e67e22;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

.contact-faq-offset {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-faq-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-cta-diagonal {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.contact-cta-diagonal h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-cta-diagonal p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-contact {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-contact:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

.thanks-container {
    display: flex;
    gap: 60px;
    padding: 100px 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5d6d7e;
    line-height: 1.7;
}

.thanks-info {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-selected {
    font-size: 16px;
    color: #27ae60;
    line-height: 1.6;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.6;
}

.thanks-next-steps li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-back {
    background-color: #e67e22;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.thanks-visual {
    flex: 0 0 400px;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #5d6d7e;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #5d6d7e;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #5d6d7e;
    line-height: 1.6;
}

.no-link {
    color: #5d6d7e;
    text-decoration: none;
    cursor: text;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-image-overlay {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .intro-offset,
    .about-story-diagonal,
    .team-approach-offset,
    .contact-info-offset,
    .thanks-container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .intro-image-float,
    .story-image-wrap,
    .approach-visual,
    .contact-visual,
    .thanks-visual {
        flex: 1;
        margin-top: 0;
        transform: none;
    }

    .intro-text-block {
        padding-left: 0;
    }

    .service-card,
    .service-detail-card {
        flex-direction: column;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .card-right {
        flex-direction: column;
    }

    .service-image,
    .service-detail-image {
        flex: 1;
        min-height: 200px;
    }

    .section-title-offset {
        padding-left: 0;
        font-size: 32px;
    }

    .features-irregular,
    .steps-container,
    .additional-grid {
        flex-direction: column;
    }

    .feature-block,
    .step-item,
    .additional-item {
        flex: 1;
    }

    .feature-elevated,
    .value-elevated-1,
    .value-elevated-2,
    .value-elevated-3,
    .step-offset-1,
    .step-offset-2,
    .step-offset-3,
    .step-offset-4 {
        transform: none;
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .pricing-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}