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

a {
    text-decoration: none;
    color: #2c5aa0;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a6b;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a6b;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c5aa0;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    list-style: none;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 1.5rem 0;
}

.nav-menu a {
    font-size: 1.1rem;
    color: #2d3748;
    display: block;
    padding: 0.5rem 0;
}

.hero-asymmetric {
    margin-top: 5rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 5%;
}

.hero-block-left {
    width: 100%;
    margin-bottom: 2rem;
}

.hero-image-wrap {
    width: 100%;
    transform: translateX(-10px);
}

.hero-svg {
    width: 100%;
    height: auto;
}

.hero-block-right {
    width: 100%;
    padding: 2rem 0;
}

.hero-block-right h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a3a6b;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #1a3a6b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5aa0;
    padding: 1rem 2rem;
    border-radius: 5px;
    border: 2px solid #2c5aa0;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: #ffffff;
}

.offset-intro {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
}

.offset-left-text {
    width: 100%;
    margin-bottom: 2rem;
}

.offset-left-text h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.offset-left-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.offset-right-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.stat-box {
    background: #e8f0fe;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(10px);
    max-width: 300px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a5568;
    text-align: center;
    margin-top: 0.5rem;
}

.problem-cascade {
    padding: 4rem 5%;
    background: #f7fafc;
}

.cascade-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cascade-item.offset-down {
    transform: translateX(20px);
}

.cascade-item.offset-up {
    transform: translateX(-20px);
}

.cascade-item h3 {
    font-size: 1.5rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.cascade-item p {
    color: #4a5568;
    line-height: 1.7;
}

.trust-layer {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
}

.trust-left {
    width: 100%;
    margin-bottom: 2rem;
}

.trust-left svg {
    width: 100%;
    height: auto;
}

.trust-right {
    width: 100%;
}

.trust-right h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1.5rem;
}

.trust-right p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.benefit-grid-asymmetric {
    padding: 4rem 5%;
    background: #f7fafc;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-card.b-offset-1 {
    transform: translateX(-10px);
}

.benefit-card.b-offset-2 {
    transform: translateX(15px);
}

.benefit-card.b-offset-3 {
    transform: translateX(-5px);
}

.benefit-card.b-offset-4 {
    transform: translateX(10px);
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: #1a3a6b;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 4rem 5%;
    background: #2c5aa0;
    color: #ffffff;
}

.testimonial-inline blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.services-preview {
    padding: 4rem 5%;
}

.services-preview h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 2rem;
    text-align: center;
}

.services-offset-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-mini {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

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

.service-mini h4 {
    font-size: 1.4rem;
    color: #1a3a6b;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-mini p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #2c5aa0;
    font-weight: 600;
}

.link-arrow:hover {
    color: #1a3a6b;
}

.cta-centered {
    text-align: center;
    margin-top: 2rem;
}

.form-container-asymmetric {
    padding: 4rem 5%;
    background: #f7fafc;
    display: flex;
    flex-direction: column;
}

.form-intro-side {
    width: 100%;
    margin-bottom: 2rem;
}

.form-intro-side h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.form-intro-side p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.form-side {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 1rem;
    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: #2c5aa0;
}

.urgency-block {
    padding: 4rem 5%;
    background: #1a3a6b;
    color: #ffffff;
    text-align: center;
}

.urgency-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 5px;
    border: 2px solid #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #1a3a6b;
}

.final-story {
    padding: 4rem 5%;
}

.story-text-block h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1.5rem;
}

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

.footer-asymmetric {
    background: #1a3a6b;
    color: #ffffff;
    padding: 3rem 5%;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c5aa0;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3a6b;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #e8f0fe;
}

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

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero-services,
.page-hero-about,
.page-hero-contact {
    margin-top: 5rem;
    padding: 4rem 5%;
    background: #f7fafc;
    text-align: center;
}

.page-hero-services h1,
.page-hero-about h1,
.page-hero-contact h1 {
    font-size: 2.5rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-full-list {
    padding: 4rem 5%;
}

.service-item-asymmetric {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
}

.service-item-asymmetric.offset-service-right {
    flex-direction: column;
}

.service-visual {
    width: 100%;
}

.service-visual svg {
    width: 100%;
    height: auto;
}

.service-details {
    width: 100%;
}

.service-details h3 {
    font-size: 1.8rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

.btn-service {
    display: inline-block;
    background: #2c5aa0;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

.services-cta-block {
    padding: 4rem 5%;
    background: #f7fafc;
    text-align: center;
}

.services-cta-block h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.services-cta-block p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-section-services {
    padding: 4rem 5%;
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-centered h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container-centered p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
}

.about-story-asymmetric {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text-block {
    width: 100%;
}

.about-text-block h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image-block {
    width: 100%;
}

.about-image-block svg {
    width: 100%;
    height: auto;
}

.values-offset {
    padding: 4rem 5%;
    background: #f7fafc;
}

.values-offset h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card.v-offset-1 {
    transform: translateX(-10px);
}

.value-card.v-offset-2 {
    transform: translateX(15px);
}

.value-card.v-offset-3 {
    transform: translateX(-8px);
}

.value-card.v-offset-4 {
    transform: translateX(12px);
}

.value-card h4 {
    font-size: 1.3rem;
    color: #1a3a6b;
    margin-bottom: 0.8rem;
}

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

.approach-section {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-left {
    width: 100%;
}

.approach-left h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1.5rem;
}

.approach-left p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.approach-right {
    width: 100%;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    min-width: 50px;
}

.step-item h4 {
    font-size: 1.2rem;
    color: #1a3a6b;
}

.team-intro {
    padding: 4rem 5%;
    background: #f7fafc;
}

.team-intro h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 2rem;
    text-align: center;
}

.team-lead {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-about {
    padding: 4rem 5%;
    background: #2c5aa0;
    color: #ffffff;
}

.testimonial-about blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-about cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
    display: block;
    text-align: center;
}

.cta-about {
    padding: 4rem 5%;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 4rem 5%;
}

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

.contact-block {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual {
    padding: 2rem 5%;
}

.contact-visual svg {
    width: 100%;
    height: auto;
}

.contact-cta-block {
    padding: 4rem 5%;
    background: #f7fafc;
    text-align: center;
}

.contact-cta-block h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.contact-cta-block p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-hero {
    margin-top: 5rem;
    padding: 4rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-confirm {
    font-size: 1.1rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-next-steps {
    padding: 4rem 5%;
    background: #f7fafc;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    min-width: 50px;
}

.timeline-item h4 {
    font-size: 1.3rem;
    color: #1a3a6b;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    margin-top: 5rem;
    padding: 4rem 5%;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a3a6b;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a3a6b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5aa0;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: row;
        box-shadow: none;
    }

    .nav-menu li {
        margin: 0 0 0 2rem;
    }

    .hamburger {
        display: none;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .hero-block-left {
        width: 45%;
        margin-bottom: 0;
    }

    .hero-block-right {
        width: 55%;
        padding-left: 3rem;
    }

    .hero-block-right h1 {
        font-size: 3rem;
    }

    .offset-intro {
        flex-direction: row;
        align-items: center;
    }

    .offset-left-text {
        width: 60%;
        margin-bottom: 0;
    }

    .offset-right-box {
        width: 40%;
    }

    .trust-layer {
        flex-direction: row;
        align-items: center;
    }

    .trust-left {
        width: 40%;
        margin-bottom: 0;
    }

    .trust-right {
        width: 60%;
        padding-left: 3rem;
    }

    .benefit-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        width: calc(50% - 1rem);
    }

    .services-offset-layout {
        flex-direction: row;
    }

    .service-mini {
        width: calc(33.333% - 1.5rem);
    }

    .form-container-asymmetric {
        flex-direction: row;
        gap: 3rem;
    }

    .form-intro-side {
        width: 40%;
        margin-bottom: 0;
    }

    .form-side {
        width: 60%;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        width: 30%;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .service-item-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .service-item-asymmetric.offset-service-right {
        flex-direction: row-reverse;
    }

    .service-visual {
        width: 40%;
    }

    .service-details {
        width: 60%;
        padding: 0 2rem;
    }

    .about-story-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .about-text-block {
        width: 60%;
    }

    .about-image-block {
        width: 40%;
    }

    .values-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 1rem);
    }

    .approach-section {
        flex-direction: row;
    }

    .approach-left {
        width: 50%;
    }

    .approach-right {
        width: 50%;
        padding-left: 2rem;
    }

    .contact-details-asymmetric {
        flex-direction: row;
    }

    .contact-block {
        width: calc(33.333% - 1.5rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-block-right h1 {
        font-size: 3.5rem;
    }

    .benefit-grid-asymmetric {
        flex-wrap: nowrap;
    }

    .benefit-card {
        width: calc(25% - 1rem);
    }

    .values-grid-asymmetric {
        flex-wrap: nowrap;
    }

    .value-card {
        width: calc(25% - 1rem);
    }
}
