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

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 550px;
    margin-left: 8%;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content-offset p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    z-index: 1;
}

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

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 80px;
    background-color: #f8f9fa;
}

.intro-block-left {
    flex: 1;
    padding-left: 5%;
}

.intro-block-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.intro-block-right {
    flex: 1;
    background-color: #ffffff;
}

.intro-block-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.services-irregular {
    padding: 120px 5% 80px;
    background-color: #ffffff;
}

.section-title-offset {
    margin-left: 15%;
    margin-bottom: 60px;
}

.section-title-offset h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-title-offset p {
    font-size: 19px;
    color: #6c757d;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 3%;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

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

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
    margin: 15px 20px;
}

.service-card .btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .btn-select:hover {
    background-color: #2980b9;
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.card-offset-top {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
    margin-top: -40px;
}

.card-small {
    flex: 1 1 calc(35% - 15px);
    min-width: 280px;
}

.card-offset-bottom {
    flex: 1 1 calc(45% - 15px);
    min-width: 300px;
    margin-top: 30px;
}

.card-wide {
    flex: 1 1 calc(55% - 15px);
    min-width: 350px;
    margin-left: auto;
}

.form-section-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 10%;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container-offset p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

.btn-submit:hover {
    background-color: #2980b9;
}

.why-us-overlap {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.features-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateX(10px);
}

.feature-box.offset-up {
    margin-left: 40px;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-box p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.why-image {
    flex: 1;
}

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

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

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
}

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

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.5;
    max-width: 800px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: none;
}

.cookie-banner.active {
    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: 14px;
    line-height: 1.6;
}

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

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

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

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

.about-hero-offset {
    padding: 120px 8% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero-text h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    max-width: 700px;
}

.about-hero-text p {
    font-size: 20px;
    color: #546e7a;
    max-width: 650px;
    line-height: 1.7;
}

.about-story-irregular {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 70px;
}

.story-block-wide {
    flex: 1.2;
}

.story-block-wide h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-image-offset {
    flex: 1;
    margin-top: -50px;
}

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

.values-asymmetric {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    margin-left: 10%;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.value-card.card-offset-left {
    margin-top: -30px;
}

.value-card.card-center {
    margin-top: 20px;
}

.value-card.card-offset-right {
    margin-top: -10px;
}

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

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

.approach-diagonal {
    padding: 100px 10% 100px 15%;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 700px;
}

.team-overlap {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-overlap h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.team-member.offset-down {
    margin-top: 40px;
}

.team-member h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member .role {
    font-size: 15px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.services-hero-diagonal {
    padding: 120px 8% 80px 12%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-hero-diagonal h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    max-width: 650px;
}

.services-hero-diagonal p {
    font-size: 20px;
    color: #546e7a;
    max-width: 600px;
    line-height: 1.7;
}

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

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    padding: 0 3%;
}

.service-detail-block.large-offset {
    margin-left: 8%;
}

.service-detail-block.reverse-offset {
    flex-direction: row-reverse;
    margin-right: 8%;
}

.service-detail-block.compact-offset {
    margin-left: 5%;
}

.service-detail-block.wide-offset {
    flex-direction: row-reverse;
    margin-right: 10%;
}

.service-detail-block.final-offset {
    margin-left: 12%;
    margin-bottom: 50px;
}

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

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

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

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

.service-features li {
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color: #495057;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 30px 0;
}

.price-label {
    font-size: 15px;
    color: #6c757d;
}

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

.btn-select-service {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.cta-services-overlap {
    padding: 80px 5%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
    margin: 50px 5% 0;
    border-radius: 20px;
}

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

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

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

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

.contact-hero-offset {
    padding: 120px 8% 60px 12%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-hero-offset h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-hero-offset p {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-main-asymmetric {
    display: flex;
    gap: 70px;
    padding: 80px 8%;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #495057;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.info-item .note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    height: 400px;
    background-color: #e9ecef;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.map-overlay p {
    font-size: 15px;
    color: #495057;
    font-weight: 600;
    margin: 0;
}

.contact-approach-diagonal {
    padding: 80px 10% 80px 15%;
    background-color: #f8f9fa;
}

.contact-approach-diagonal h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

.step-item.offset-right {
    margin-left: 80px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

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

.step-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

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

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.thanks-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #e3f2fd;
    border-radius: 8px;
}

.service-confirmation {
    font-size: 16px;
    color: #495057;
}

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

.btn-primary {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 14px 35px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.thanks-next-steps {
    padding: 80px 5%;
    background-color: #ffffff;
}

.thanks-next-steps h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

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

.step-box {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.step-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-box p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.legal-page {
    padding: 100px 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.legal-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 12px;
    color: #495057;
}

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

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

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

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 50px;
    font-style: italic;
}

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

    .hero-content-offset {
        margin-left: 0;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        margin-top: 30px;
    }

    .nav-floating {
        position: static;
        margin: 20px;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .intro-offset,
    .why-us-overlap,
    .about-story-irregular,
    .service-detail-block,
    .contact-main-asymmetric {
        flex-direction: column;
    }

    .values-grid,
    .team-grid,
    .steps-grid {
        flex-direction: column;
    }

    .value-card,
    .team-member {
        margin-top: 0 !important;
    }
}