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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px 25px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.logo-container {
    transform: translateY(-5px);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-offset ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-offset ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-offset ul li a:hover {
    opacity: 0.8;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 80px 60px 80px 120px;
}

.hero-text-block {
    max-width: 520px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 55%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background-color: #e2e8f0;
}

.intro-irregular {
    display: flex;
    align-items: center;
    padding: 120px 80px 120px 140px;
    gap: 80px;
    background-color: #ffffff;
}

.intro-block-left {
    flex: 1;
    transform: translateY(-20px);
}

.intro-block-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-image-right {
    flex: 0 0 400px;
    transform: translateY(30px) rotate(-2deg);
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.services-cards-staggered {
    padding: 100px 60px 120px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: #1a202c;
    font-weight: 700;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-offset-1 {
    transform: translateY(0);
}

.card-offset-2 {
    transform: translateY(30px);
}

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

.card-offset-4 {
    transform: translateY(40px);
}

.card-offset-5 {
    transform: translateY(10px);
}

.card-offset-6 {
    transform: translateY(-30px);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 22px 25px 15px;
    color: #1a202c;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 25px 20px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin: 20px 25px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 12px 20px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #5568d3;
}

.trust-block-overlap {
    position: relative;
    padding: 100px 100px 100px 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    overflow: hidden;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 0 0 calc(50% - 20px);
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.form-section-irregular {
    position: relative;
    display: flex;
    padding: 120px 80px;
    background-color: #f8f9fa;
    gap: 80px;
}

.form-container-offset {
    flex: 1;
    transform: translateY(-30px);
    z-index: 2;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
}

.order-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.form-image-overlap {
    flex: 0 0 400px;
    transform: translateY(50px) rotate(2deg);
}

.form-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.disclaimer-section {
    padding: 60px 100px;
    background-color: #fff8e1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5d4037;
    text-align: center;
}

.footer-irregular {
    background-color: #1a202c;
    color: #ffffff;
    padding: 80px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-block {
    flex: 1;
}

.footer-block-1 {
    transform: translateY(-10px);
}

.footer-block-2 {
    transform: translateY(10px);
}

.footer-block-3 {
    transform: translateY(-5px);
}

.footer-block-4 {
    transform: translateY(5px);
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

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

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

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

.footer-block ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie-accept {
    background-color: #667eea;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 100px 80px 80px 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 80px;
    background-color: #ffffff;
}

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

.story-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.story-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

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

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

.values-irregular {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.values-irregular h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
}

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

.value-card {
    flex: 0 0 calc(50% - 20px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-offset-1 {
    transform: translateY(-15px);
}

.value-offset-2 {
    transform: translateY(25px);
}

.value-offset-3 {
    transform: translateY(15px);
}

.value-offset-4 {
    transform: translateY(-20px);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

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

.team-offset {
    display: flex;
    gap: 80px;
    padding: 100px 80px 100px 120px;
    background-color: #ffffff;
}

.team-content {
    flex: 1;
    transform: translateY(30px);
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.team-image-overlap {
    flex: 0 0 400px;
    transform: translateY(-30px) rotate(2deg);
}

.team-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e2e8f0;
}

.process-section {
    padding: 100px 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.process-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
}

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

.process-step {
    flex: 0 0 calc(33.333% - 30px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

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

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

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

.step-offset-5 {
    transform: translateY(-10px);
}

.step-offset-6 {
    transform: translateY(15px);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 80px 60px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.services-detailed {
    padding: 60px 80px 100px;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-layout-1,
.service-layout-3,
.service-layout-5 {
    flex-direction: row;
}

.service-layout-2,
.service-layout-4,
.service-layout-6 {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 25px 0;
}

.price-label {
    font-size: 16px;
    color: #718096;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

.service-detail-image {
    flex: 0 0 350px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.pricing-note {
    padding: 60px 100px;
    background-color: #f8f9fa;
}

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

.pricing-note-content h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.pricing-note-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.contact-info-offset {
    display: flex;
    gap: 80px;
    padding: 80px 100px;
    background-color: #ffffff;
}

.contact-main-block {
    flex: 1;
    transform: translateY(-20px);
}

.contact-main-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #667eea;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-image-overlap {
    flex: 0 0 400px;
    transform: translateY(30px) rotate(-1deg);
}

.contact-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e2e8f0;
}

.contact-additional {
    display: flex;
    gap: 60px;
    padding: 60px 100px;
    background-color: #f8f9fa;
}

.additional-block-1,
.additional-block-2 {
    flex: 1;
}

.additional-block-1 h3,
.additional-block-2 h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.additional-block-1 p,
.additional-block-2 p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.contact-business-info {
    padding: 60px 100px;
    background-color: #ffffff;
}

.contact-business-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 700;
}

.business-data p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.thanks-hero {
    padding: 100px 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.order-summary p {
    font-size: 16px;
    color: #4a5568;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

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

.steps-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

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

.btn-back-home,
.btn-view-services {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-back-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-view-services {
    background-color: #ffffff;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-view-services:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.thanks-contact-info {
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.contact-info-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-email {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
    font-size: 15px;
}

.cookies-table th {
    font-weight: 600;
    color: #2d3748;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        margin: 0 auto;
    }

    .intro-irregular,
    .about-story-offset,
    .team-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

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

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .form-section-irregular {
        flex-direction: column;
        padding: 60px 40px;
    }

    .form-image-overlap {
        flex: none;
        width: 100%;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-block {
        flex: 0 0 calc(50% - 30px);
    }
}

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

    .nav-offset {
        transform: none;
    }

    .nav-offset ul {
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .trust-item {
        flex: 0 0 100%;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .service-detail {
        flex-direction: column;
        padding: 30px;
    }

    .service-layout-2,
    .service-layout-4,
    .service-layout-6 {
        flex-direction: column;
    }

    .service-detail-image {
        flex: none;
        width: 100%;
    }

    .contact-info-offset,
    .contact-additional {
        flex-direction: column;
    }

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    .btn-back-home,
    .btn-view-services {
        width: 100%;
        text-align: center;
    }

    .footer-block {
        flex: 0 0 100%;
    }
}
