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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --white: #ffffff;
    --gray: #7f8c8d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: var(--light-bg);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid var(--border-color);
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    background: var(--white);
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 10px;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

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

.hero-content-offset {
    flex: 0 0 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: -50px;
    top: 15%;
    width: 55%;
    height: 70%;
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #c0392b;
}

.why-offset {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    align-items: flex-start;
}

.why-text-block {
    flex: 0 0 55%;
    padding-top: 40px;
}

.why-text-block h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.why-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-visual-card {
    flex: 1;
    margin-top: 60px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.why-visual-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visual-caption {
    padding: 20px;
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
}

.expertise-diagonal {
    display: flex;
    padding: 100px 60px;
    background-color: var(--light-bg);
    position: relative;
    gap: 60px;
}

.expertise-content {
    flex: 0 0 50%;
}

.expertise-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.expertise-content p {
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.expertise-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-marker {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.point-item p {
    font-size: 16px;
    margin: 0;
}

.expertise-image-angled {
    flex: 1;
    transform: translateY(40px);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-stagger {
    padding: 120px 60px;
}

.section-title-offset {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
    padding-left: 40px;
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    flex: 0 0 calc(50% - 15px);
    position: relative;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.price {
    display: block;
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 700;
}

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

.card-right-high {
    transform: translateY(-30px);
}

.card-left-low {
    transform: translateY(30px);
}

.card-center {
    flex: 0 0 100%;
    transform: translateX(40px);
    background-color: var(--light-bg);
}

.card-right {
    transform: translateX(20px) translateY(-20px);
}

.card-left-accent {
    border: 2px solid var(--accent-color);
    transform: translateX(-30px) translateY(20px);
}

.process-overlap {
    position: relative;
    padding: 120px 60px;
    min-height: 600px;
}

.process-image-back {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 70%;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.process-content-front {
    position: relative;
    margin-left: 45%;
    background-color: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.process-content-front h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 25px;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-top: 20px;
}

.testimonials-scattered {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.testimonials-scattered h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonial-wrap {
    position: relative;
    min-height: 500px;
}

.testimonial {
    position: absolute;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 400px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

.testimonial-pos-1 {
    top: 0;
    left: 10%;
}

.testimonial-pos-2 {
    top: 150px;
    right: 15%;
}

.testimonial-pos-3 {
    top: 320px;
    left: 25%;
}

.cta-diagonal {
    padding: 120px 60px;
    position: relative;
}

.cta-content-angled {
    max-width: 600px;
    margin-left: 100px;
}

.cta-content-angled h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-angled p {
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.info-split {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
}

.info-disclaimer {
    flex: 0 0 55%;
}

.info-disclaimer h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.info-disclaimer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.info-image {
    flex: 1;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 60px 40px;
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 0.7;
}

.footer-col-wide {
    flex: 2;
}

.footer-column {
    flex: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 25px 40px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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 {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

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

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

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.about-hero-offset {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    align-items: center;
}

.about-text-main {
    flex: 0 0 50%;
}

.about-text-main h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text-main p {
    font-size: 18px;
    line-height: 1.8;
}

.about-image-corner {
    flex: 1;
    transform: translateY(40px);
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.about-image-corner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-irregular {
    padding: 100px 60px;
    background-color: var(--light-bg);
    display: flex;
    gap: 60px;
}

.story-block-1 {
    flex: 0 0 45%;
    padding-top: 40px;
}

.story-block-1 h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-block-1 p,
.story-block-2 p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-block-2 {
    flex: 1;
    padding-top: 80px;
}

.values-diagonal {
    padding: 120px 60px;
}

.values-diagonal h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    position: relative;
    min-height: 400px;
}

.value-item {
    position: absolute;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    max-width: 400px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

.value-pos-1 {
    top: 0;
    left: 5%;
}

.value-pos-2 {
    top: 60px;
    right: 10%;
}

.value-pos-3 {
    top: 200px;
    left: 30%;
}

.team-overlap {
    position: relative;
    padding: 120px 60px;
    min-height: 600px;
}

.team-image-back {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 75%;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.team-content-float {
    position: relative;
    max-width: 500px;
    background-color: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.team-content-float h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.team-content-float p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.principles-stagger {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.principles-stagger h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.principle-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.principle-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.principle-card p {
    font-size: 17px;
    line-height: 1.8;
}

.principle-left {
    margin-left: 40px;
    margin-right: auto;
    max-width: 700px;
}

.principle-right {
    margin-left: auto;
    margin-right: 40px;
    max-width: 700px;
}

.principle-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.services-hero-irregular {
    padding: 120px 60px 60px;
}

.services-title-offset {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    margin-left: 40px;
}

.services-intro {
    font-size: 18px;
    color: var(--gray);
    margin-left: 40px;
}

.service-detail-asymmetric {
    padding: 60px 60px 120px;
}

.service-full-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.card-reverse {
    flex-direction: row-reverse;
}

.service-image-side {
    flex: 0 0 40%;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-content-side h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.service-content-side p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 20px;
}

.service-includes li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.service-note {
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
}

.cta-services-offset {
    text-align: center;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.cta-services-offset h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.contact-hero-diagonal {
    padding: 120px 60px 80px;
    background-color: var(--light-bg);
}

.contact-hero-diagonal h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero-diagonal p {
    font-size: 18px;
    color: var(--gray);
}

.contact-info-asymmetric {
    padding: 80px 60px;
}

.contact-block-offset {
    margin-bottom: 60px;
    margin-left: 40px;
}

.contact-block-stagger {
    margin-bottom: 60px;
    margin-left: 100px;
}

.contact-block-float {
    margin-left: 180px;
}

.contact-block-offset h2,
.contact-block-stagger h2,
.contact-block-float h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-detail {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-note {
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
}

.contact-image-irregular {
    position: relative;
    height: 500px;
    margin: 0 60px 80px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.contact-overlay-text h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-overlay-text p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-directions-offset {
    padding: 0 60px 120px;
}

.contact-directions-offset h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.directions-grid {
    display: flex;
    gap: 60px;
}

.direction-item {
    flex: 1;
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.direction-item p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-hero-center {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-detail {
    font-size: 17px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-next {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 35px;
}

.thanks-next a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-next a:hover {
    text-decoration: underline;
}

.btn-back-home {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-back-home:hover {
    background-color: #c0392b;
}

.thanks-info-offset {
    padding: 80px 60px 120px;
    background-color: var(--light-bg);
}

.thanks-info-offset h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.thanks-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-step p {
    font-size: 16px;
    line-height: 1.7;
}

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

.legal-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.legal-updated {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 700;
    color: var(--primary-color);
}

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

    .hero-content-offset {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        height: 400px;
    }

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

    .nav-links {
        display: flex;
        gap: 20px;
    }

    .why-offset,
    .expertise-diagonal,
    .story-irregular,
    .service-full-card {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid-asymmetric .service-card {
        flex: 0 0 100%;
        transform: none !important;
    }

    .testimonial-wrap {
        min-height: auto;
    }

    .testimonial {
        position: static;
        margin-bottom: 30px;
        max-width: 100%;
    }

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

    .footer-asymmetric {
        flex-direction: column;
        gap: 40px;
    }
}