* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fff;
    position: relative;
}

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

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

.nav-right a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 0 60px;
    overflow: hidden;
    background-color: #fafafa;
}

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

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 12%;
    width: 52%;
    height: 70%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background-color: #e8e8e8;
}

.services-irregular {
    padding: 120px 60px 100px;
    background-color: #fff;
}

.section-title-offset {
    max-width: 600px;
    margin-left: 15%;
    margin-bottom: 80px;
}

.section-title-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-title-offset p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.offset-1 {
    width: calc(45% - 20px);
    margin-left: 5%;
}

.service-card.offset-2 {
    width: calc(48% - 20px);
    margin-left: auto;
}

.service-card.offset-3 {
    width: calc(50% - 20px);
    margin-left: 10%;
}

.service-card.offset-4 {
    width: calc(46% - 20px);
    margin-left: auto;
    margin-right: 8%;
}

.service-card.offset-5 {
    width: calc(52% - 20px);
    margin-left: 3%;
}

.service-card.offset-6 {
    width: calc(44% - 20px);
    margin-left: auto;
}

.service-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-info .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #0052a3;
}

.why-us-overlap {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background-color: #f5f5f5;
    gap: 60px;
    position: relative;
}

.why-content-left {
    flex: 1;
    max-width: 520px;
    margin-left: 12%;
}

.why-content-left h2 {
    font-size: 38px;
    margin-bottom: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.why-content-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 28px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

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

.why-image-right {
    flex: 1;
    max-width: 480px;
}

.why-image-right img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8e8e8;
}

.form-section-creative {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #fff;
}

.form-container-offset {
    max-width: 580px;
    margin-left: 18%;
}

.form-container-offset h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-container-offset p {
    font-size: 17px;
    color: #bbb;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ddd;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #fff;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #0052a3;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #fff;
    border-left: 4px solid #ff9900;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 60px 30px;
}

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

.footer-block-1,
.footer-block-2,
.footer-block-3 {
    flex: 1;
}

.footer-asymmetric h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-asymmetric p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 10px;
}

.footer-block-2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-block-2 a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-block-2 a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -4px 12px 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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #0066cc;
    color: #fff;
}

.btn-accept:hover {
    background-color: #0052a3;
}

.btn-reject {
    background-color: #555;
    color: #fff;
}

.btn-reject:hover {
    background-color: #444;
}

.about-hero-offset {
    padding: 100px 60px 80px;
    background-color: #fafafa;
}

.about-intro {
    max-width: 680px;
    margin-left: 12%;
}

.about-intro h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
}

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

.story-content-left {
    flex: 1;
    max-width: 560px;
}

.story-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-content-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.story-image-right {
    flex: 1;
    max-width: 500px;
}

.story-image-right img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.values-overlap {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

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

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

.value-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-card.pos-1 {
    width: calc(52% - 20px);
    margin-left: 5%;
}

.value-card.pos-2 {
    width: calc(42% - 20px);
}

.value-card.pos-3 {
    width: calc(45% - 20px);
    margin-left: 8%;
}

.value-card.pos-4 {
    width: calc(48% - 20px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.team-section-creative {
    padding: 80px 60px;
    background-color: #fff;
}

.team-section-creative h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.team-member {
    background-color: #fafafa;
    padding: 32px;
    border-radius: 6px;
}

.team-member.mem-1 {
    width: calc(48% - 20px);
    margin-left: 6%;
}

.team-member.mem-2 {
    width: calc(45% - 20px);
}

.team-member.mem-3 {
    width: calc(52% - 20px);
    margin-left: 10%;
}

.team-member h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 14px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 14px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.cta-asymmetric {
    padding: 100px 60px;
    background-color: #0066cc;
    text-align: center;
}

.cta-content-offset {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-offset h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 32px;
    font-weight: 700;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #0066cc;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-cta:hover {
    background-color: #f0f0f0;
}

.services-hero-creative {
    padding: 100px 60px 60px;
    background-color: #fafafa;
    text-align: center;
}

.services-hero-creative h1 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-hero-creative p {
    font-size: 19px;
    color: #666;
}

.services-detailed-asymmetric {
    padding: 60px 60px;
    background-color: #fff;
}

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

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

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

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

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

.service-detail.offset-e {
    margin-left: 3%;
}

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

.service-detail-content {
    flex: 1;
    max-width: 520px;
}

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

.service-detail-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.service-time {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
    max-width: 480px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.warranty-section-creative {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.warranty-content-offset {
    max-width: 780px;
    margin-left: 15%;
}

.warranty-content-offset h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.warranty-content-offset p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.cta-services-offset {
    padding: 80px 60px;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-services-offset h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 32px;
    font-weight: 700;
}

.btn-cta-large {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #0052a3;
}

.contact-hero-offset {
    padding: 100px 60px 60px;
    background-color: #fafafa;
}

.contact-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 18px;
    margin-left: 10%;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-hero-offset p {
    font-size: 19px;
    color: #666;
    margin-left: 10%;
}

.contact-info-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 80px 60px;
    background-color: #fff;
}

.contact-block {
    background-color: #fafafa;
    padding: 36px;
    border-radius: 6px;
}

.contact-block.block-1 {
    width: calc(48% - 25px);
    margin-left: 5%;
}

.contact-block.block-2 {
    width: calc(45% - 25px);
}

.contact-block.block-3 {
    width: calc(55% - 25px);
    margin-left: 10%;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.address-line {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}

.email-display {
    font-size: 17px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-note {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-top: 16px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.hours-row .day {
    color: #444;
    font-weight: 500;
}

.hours-row .time {
    color: #0066cc;
    font-weight: 600;
}

.contact-approach-creative {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

.approach-content-offset {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    background-color: #fff;
    padding: 28px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.step.step-1 {
    width: calc(47% - 20px);
    margin-left: 3%;
}

.step.step-2 {
    width: calc(48% - 20px);
}

.step.step-3 {
    width: calc(50% - 20px);
    margin-left: 5%;
}

.step.step-4 {
    width: calc(45% - 20px);
}

.step.step-5 {
    width: calc(46% - 20px);
    margin-left: 7%;
}

.step.step-6 {
    width: calc(49% - 20px);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.contact-map-section {
    padding: 80px 60px;
    background-color: #fff;
    text-align: center;
}

.contact-map-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-map-section p {
    font-size: 17px;
    color: #666;
}

.thanks-hero-creative {
    padding: 100px 60px;
    background-color: #fafafa;
}

.thanks-content-offset {
    max-width: 700px;
    margin-left: 15%;
}

.thanks-content-offset h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.thanks-info-box {
    background-color: #fff;
    padding: 32px;
    border-radius: 6px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.thanks-info-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

.thanks-info-box ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info-box ul li {
    font-size: 15px;
    color: #444;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.thanks-info-box ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #0066cc;
    font-size: 20px;
}

.thanks-next-steps {
    background-color: #e8f4ff;
    padding: 28px;
    border-radius: 6px;
    margin-bottom: 32px;
    border-left: 4px solid #0066cc;
}

.thanks-next-steps h2 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.thanks-next-steps p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 8px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

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

.thanks-additional-info {
    padding: 80px 60px;
    background-color: #fff;
}

.info-cards-asymmetric {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background-color: #fafafa;
    padding: 32px;
    border-radius: 6px;
}

.info-card.card-a {
    flex: 1;
    margin-left: 3%;
}

.info-card.card-b {
    flex: 1;
}

.info-card.card-c {
    flex: 1;
    margin-right: 3%;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-content {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.last-update {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

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

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 14px;
}

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

.legal-section a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #0052a3;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

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

    .hero-content-offset {
        margin-left: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 90%;
        height: 400px;
        margin: 0 auto;
    }

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

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5,
    .service-card.offset-6 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .why-us-overlap {
        flex-direction: column;
    }

    .why-content-left {
        margin-left: 0;
    }

    .service-detail {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail.offset-b,
    .service-detail.offset-d,
    .service-detail.offset-f {
        flex-direction: column;
    }

    .contact-info-asymmetric {
        flex-direction: column;
    }

    .contact-block.block-1,
    .contact-block.block-2,
    .contact-block.block-3 {
        width: 100%;
        margin-left: 0;
    }

    .info-cards-asymmetric {
        flex-direction: column;
    }

    .info-card.card-a,
    .info-card.card-b,
    .info-card.card-c {
        margin-left: 0;
        margin-right: 0;
    }
}

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

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

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

    .section-title-offset {
        margin-left: 0;
    }

    .values-grid-asymmetric,
    .team-layout-offset,
    .approach-steps-irregular {
        flex-direction: column;
    }

    .value-card.pos-1,
    .value-card.pos-2,
    .value-card.pos-3,
    .value-card.pos-4,
    .team-member.mem-1,
    .team-member.mem-2,
    .team-member.mem-3,
    .step.step-1,
    .step.step-2,
    .step.step-3,
    .step.step-4,
    .step.step-5,
    .step.step-6 {
        width: 100%;
        margin-left: 0;
    }

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

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

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