* {
    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: #ffffff;
}

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

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: relative;
}

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

.logo-offset h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1abc9c;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 35px;
    transform: translateX(15px);
}

.nav-floating a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-floating a:hover {
    color: #1abc9c;
}

.nav-floating a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1abc9c;
    transition: width 0.3s ease;
}

.nav-floating a:hover::after {
    width: 100%;
}

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 5% 60px;
    gap: 60px;
    min-height: 500px;
}

.hero-content-left {
    flex: 1;
    transform: translateX(-20px);
}

.hero-content-left h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 35px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #1abc9c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: skewX(-3deg);
}

.cta-primary:hover {
    background: #16a085;
    transform: skewX(-3deg) translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
}

.hero-image-right {
    flex: 1;
    transform: translateY(30px) translateX(25px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -15px 15px 40px rgba(0,0,0,0.1);
}

.intro-diagonal {
    display: flex;
    padding: 100px 5% 80px;
    gap: 70px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
    align-items: center;
    position: relative;
}

.content-block-skew {
    flex: 1.2;
    transform: translateX(40px);
}

.content-block-skew h3 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.content-block-skew p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.8;
}

.image-overlap {
    flex: 0.8;
    position: relative;
    transform: translateY(-35px) translateX(-30px);
}

.image-overlap img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 20px -20px 50px rgba(0,0,0,0.08);
}

.services-preview {
    padding: 120px 5% 100px;
    background: #ffffff;
}

.section-title-offset {
    margin-bottom: 60px;
    transform: translateX(-15px);
}

.section-title-offset h3 {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e50;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: space-between;
}

.service-card {
    flex: 0 1 calc(33.333% - 25px);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 35px 28px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.elevated {
    transform: translateY(-15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

.service-card.elevated-double {
    transform: translateY(-25px) translateX(10px);
}

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

.service-card:hover {
    border-color: #1abc9c;
    box-shadow: 0 12px 35px rgba(26, 188, 156, 0.15);
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 21px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #1abc9c;
    margin: 20px 0;
}

.btn-select-service {
    background: #34495e;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #1abc9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.problem-amplification {
    padding: 100px 5%;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
}

.text-column-narrow {
    flex: 1.3;
    transform: translateX(30px);
}

.text-column-narrow h3 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-column-narrow p {
    font-size: 17px;
    margin-bottom: 22px;
    line-height: 1.8;
    color: #ecf0f1;
}

.stats-overlay {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateY(-25px);
}

.stat-block {
    background: rgba(26, 188, 156, 0.15);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #1abc9c;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #1abc9c;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #ecf0f1;
}

.solution-reveal {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
}

.image-left-wide {
    flex: 1.1;
    transform: translateX(-25px) translateY(20px);
}

.image-left-wide img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 15px 15px 45px rgba(0,0,0,0.12);
}

.text-right-narrow {
    flex: 0.9;
    transform: translateX(20px);
}

.text-right-narrow h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.text-right-narrow p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    color: #1abc9c;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid #1abc9c;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-inline:hover {
    color: #16a085;
    border-bottom-color: #16a085;
    transform: translateX(5px);
}

.trust-building {
    padding: 100px 5%;
    background: #ffffff;
}

.trust-building h3 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.features-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.feature-left,
.feature-right,
.feature-left-offset,
.feature-right-elevated {
    flex: 0 1 calc(50% - 25px);
    padding: 40px 35px;
    background: #f8f9fa;
    border-radius: 6px;
}

.feature-left {
    transform: translateX(-20px);
}

.feature-right-elevated {
    transform: translateY(-30px) translateX(20px);
    background: #ecf0f1;
}

.feature-left-offset {
    transform: translateX(-15px) translateY(15px);
}

.feature-right {
    transform: translateX(25px);
}

.features-asymmetric h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.features-asymmetric p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.testimonials-diagonal {
    padding: 100px 5%;
    background: linear-gradient(120deg, #1abc9c 0%, #16a085 100%);
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 0 1 calc(33.333% - 30px);
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-card.tilt-left {
    transform: rotate(-1.5deg) translateY(-10px);
}

.testimonial-card.tilt-right {
    transform: rotate(1.5deg) translateY(15px);
}

.testimonial-card.tilt-left-small {
    transform: rotate(-0.8deg) translateY(-5px);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #546e7a;
    font-style: normal;
}

.form-section-offset {
    padding: 100px 5%;
    background: #f8f9fa;
}

.form-container-elevated {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 8px;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.08);
    transform: translateX(-15px);
}

.form-container-elevated h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.form-container-elevated > p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.btn-submit {
    background: #1abc9c;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
}

.final-cta-asymmetric {
    padding: 100px 5%;
    background: #34495e;
    color: #ffffff;
}

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

.cta-content-offset h3 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

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

.cta-large:hover {
    background: #16a085;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

.footer-irregular {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

.footer-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column-left {
    flex: 1 1 300px;
    transform: translateY(-10px);
}

.footer-column-left h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1abc9c;
}

.footer-column-left p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-column-center,
.footer-column-right {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.footer-column-center {
    transform: translateY(10px);
}

.footer-column-right {
    transform: translateY(-5px);
}

.footer-column-center h5,
.footer-column-right h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column-center a,
.footer-column-right a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column-center a:hover,
.footer-column-right a:hover {
    color: #1abc9c;
}

.footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 5%;
    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;
}

.cookie-content a {
    color: #1abc9c;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #1abc9c;
    color: #ffffff;
}

.btn-accept:hover {
    background: #16a085;
    transform: translateY(-2px);
}

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.page-header-diagonal {
    padding: 80px 5% 60px;
    background: linear-gradient(125deg, #1abc9c 0%, #16a085 100%);
    color: #ffffff;
    text-align: center;
    transform: skewY(-1deg);
    margin-bottom: 60px;
}

.page-header-diagonal h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    transform: skewY(1deg);
}

.page-header-diagonal p {
    font-size: 18px;
    transform: skewY(1deg);
}

.about-intro-offset {
    padding: 80px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-block-left {
    flex: 1;
    transform: translateX(-20px);
}

.text-block-left h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.text-block-left p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.image-block-right-elevated {
    flex: 1;
    transform: translateY(-25px) translateX(20px);
}

.image-block-right-elevated img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 10px 10px 35px rgba(0,0,0,0.1);
}

.expertise-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.expertise-section h3 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.expertise-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.expertise-card {
    flex: 0 1 calc(50% - 20px);
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    border-left: 4px solid #1abc9c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.expertise-card.offset-1 {
    transform: translateX(-15px);
}

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

.expertise-card.offset-3 {
    transform: translateX(-10px) translateY(10px);
}

.expertise-card.offset-4 {
    transform: translateX(20px);
}

.expertise-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.expertise-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.approach-asymmetric {
    padding: 80px 5%;
}

.approach-content-narrow {
    max-width: 750px;
    margin: 0 auto;
    transform: translateX(30px);
}

.approach-content-narrow h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-content-narrow p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 25px;
    line-height: 1.8;
}

.approach-list {
    list-style: none;
    margin-top: 25px;
}

.approach-list li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: 700;
}

.values-offset {
    padding: 80px 5%;
    background: #f8f9fa;
}

.values-offset h3 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.values-layout-irregular {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 0 1 calc(33.333% - 30px);
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.value-block.elevated-left {
    transform: translateY(-20px) translateX(-10px);
}

.value-block.standard {
    transform: translateY(10px);
}

.value-block.elevated-right {
    transform: translateY(-15px) translateX(10px);
}

.value-block h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.value-block p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.team-section-diagonal {
    padding: 80px 5%;
    background: linear-gradient(115deg, #ecf0f1 0%, #ffffff 100%);
}

.team-intro {
    margin-bottom: 50px;
    transform: translateX(-20px);
}

.team-intro h3 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    color: #546e7a;
}

.team-structure {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-role {
    flex: 0 1 calc(33.333% - 30px);
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 6px;
    border-top: 3px solid #1abc9c;
}

.team-role.offset {
    transform: translateY(-20px);
}

.team-role h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.team-role p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.cta-about-offset {
    padding: 80px 5%;
}

.cta-content-irregular {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
    transform: translateX(20px) translateY(-10px);
}

.cta-content-irregular h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content-irregular p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

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

.cta-button-large:hover {
    background: #16a085;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

.services-detail-section {
    padding: 60px 5%;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 45px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-detail-card.layout-offset-1 {
    transform: translateX(-20px);
}

.service-detail-card.layout-offset-2 {
    transform: translateX(20px);
    flex-direction: row-reverse;
}

.service-detail-card.layout-offset-3 {
    transform: translateX(-15px) translateY(10px);
}

.service-image {
    flex: 0 0 400px;
}

.service-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: 700;
}

.service-pricing {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
    margin: 25px 0;
    border-left: 4px solid #1abc9c;
}

.price-label {
    font-size: 14px;
    color: #546e7a;
    display: block;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1abc9c;
    display: block;
    margin-bottom: 10px;
}

.price-note {
    font-size: 13px;
    color: #95a5a6;
    margin: 0;
}

.cta-services-offset {
    padding: 60px 5%;
    background: #34495e;
}

.cta-services-offset .cta-content {
    text-align: center;
    color: #ffffff;
    transform: translateX(-15px);
}

.cta-services-offset h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.cta-button:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
}

.contact-layout-asymmetric {
    padding: 60px 5%;
    display: flex;
    gap: 60px;
}

.contact-info-offset {
    flex: 0 0 400px;
    transform: translateX(-20px) translateY(15px);
}

.contact-info-offset h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.info-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    transform: translateY(-15px);
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-description {
    padding: 60px 5%;
    background: #f8f9fa;
}

.description-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(20px);
}

.description-content-narrow h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.description-content-narrow p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.additional-info-offset {
    padding: 80px 5%;
}

.additional-info-offset h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.faq-layout-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 0 1 calc(50% - 20px);
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 6px;
    border-left: 3px solid #1abc9c;
}

.faq-item.offset {
    transform: translateY(-15px);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-page-content {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 14px;
    color: #546e7a;
}

.thanks-section-centered {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
    transform: translateX(-20px);
}

.thanks-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1abc9c;
    font-weight: 700;
}

.thanks-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 6px;
    margin: 25px 0;
    border-left: 4px solid #1abc9c;
}

.selected-service-info p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1abc9c;
    color: #ffffff;
}

.btn-primary:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
}

.btn-secondary {
    background: #34495e;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 0 0 350px;
    transform: translateY(-20px);
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
}

.next-steps-offset {
    padding: 80px 5%;
    background: #f8f9fa;
}

.next-steps-offset h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.steps-layout {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.step-item {
    flex: 0 1 calc(25% - 30px);
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

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

.step-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.step-item p {
    font-size: 14px;
    color: #546e7a;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-content-left,
    .hero-image-right {
        transform: none;
    }

    .services-grid-irregular .service-card {
        flex: 0 1 calc(50% - 20px);
    }

    .service-card.elevated,
    .service-card.offset-top,
    .service-card.elevated-double,
    .service-card.offset-bottom {
        transform: none;
    }

    .intro-diagonal,
    .solution-reveal,
    .about-intro-offset,
    .contact-layout-asymmetric,
    .thanks-section-centered {
        flex-direction: column;
    }

    .problem-amplification {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.layout-offset-2 {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-content-left h2 {
        font-size: 36px;
    }

    .services-grid-irregular .service-card,
    .testimonial-card,
    .value-block,
    .expertise-card,
    .team-role,
    .faq-item,
    .step-item {
        flex: 1 1 100%;
    }

    .features-asymmetric > div {
        flex: 1 1 100%;
    }

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

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

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

    .steps-layout {
        flex-direction: column;
    }

    .page-header-diagonal {
        transform: none;
    }

    .page-header-diagonal h2,
    .page-header-diagonal p {
        transform: none;
    }
}