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

.header-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    flex: 1;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-center {
    flex: 2;
    text-align: center;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-right {
    flex: 1;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

main {
    margin-top: 80px;
}

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

.hero-content-offset {
    position: relative;
    z-index: 2;
    padding: 5% 5% 5% 8%;
    max-width: 650px;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateX(50px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 75%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 0 0 4px;
}

.intro-offset {
    padding: 8rem 5% 5rem 15%;
    background: #ffffff;
}

.intro-narrow {
    max-width: 700px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 5rem;
    background: #f8f9fa;
}

.story-left {
    flex: 1;
    background-color: #ecf0f1;
}

.story-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-right-elevated {
    flex: 1;
    padding: 2rem;
    transform: translateY(-40px);
}

.story-right-elevated h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-right-elevated p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.services-asymmetric {
    padding: 8rem 5% 5rem 5%;
    background: #ffffff;
}

.services-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 8%;
    color: #1a252f;
    font-weight: 700;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 1.5rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.service-card.offset-bottom {
    transform: translateY(15px);
}

.service-card.elevated-more {
    transform: translateY(-45px);
}

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

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

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
    background-color: #ecf0f1;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.testimonials-scattered {
    padding: 6rem 5%;
    background: #ecf0f1;
}

.testimonials-scattered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a252f;
}

.testimonial-block {
    max-width: 600px;
    background: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-block.left-aligned {
    margin-left: 5%;
}

.testimonial-block.right-offset {
    margin-left: auto;
    margin-right: 10%;
}

.testimonial-block.center-elevated {
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-20px);
}

blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
}

cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.form-section-asymmetric {
    padding: 6rem 5%;
    background: #2c3e50;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 10%;
    padding: 3rem;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-container-offset p {
    margin-bottom: 2rem;
    color: #546e7a;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.cta-inline {
    padding: 4rem 5%;
    text-align: center;
    background: #f8f9fa;
}

.cta-inline p {
    font-size: 1.25rem;
    color: #2c3e50;
}

.cta-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.footer-asymmetric {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 5% 2rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block {
    flex: 1;
}

.footer-block.offset {
    transform: translateY(-20px);
}

.footer-block h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-block p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-block ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.875rem;
}

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

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

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

.about-hero-offset {
    padding: 8rem 5% 4rem 12%;
    background: #f8f9fa;
}

.about-intro-irregular {
    max-width: 700px;
}

.about-intro-irregular h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
}

.about-intro-irregular p {
    font-size: 1.5rem;
    color: #546e7a;
}

.about-story-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    align-items: flex-start;
}

.story-column-narrow {
    flex: 1;
    max-width: 500px;
}

.story-column-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-column-narrow p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.story-column-wide {
    flex: 1.5;
    background-color: #ecf0f1;
}

.story-column-wide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-asymmetric {
    padding: 5rem 5% 5rem 10%;
    background: #ecf0f1;
}

.team-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.team-grid-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 4px;
}

.team-member.offset-top {
    transform: translateY(-30px);
}

.team-member.elevated {
    transform: translateY(20px);
}

.team-member.offset-bottom {
    transform: translateY(-10px);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.role {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: #546e7a;
    line-height: 1.7;
}

.values-irregular {
    padding: 5rem 5%;
}

.values-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-block {
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 4px;
}

.value-block.left-placed {
    transform: translateX(-30px);
}

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

.value-block.center-offset {
    transform: translateY(15px);
}

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

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

.approach-section {
    padding: 5rem 5% 5rem 15%;
    background: #ecf0f1;
}

.approach-content-offset {
    max-width: 800px;
}

.approach-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.approach-content-offset p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background: #2c3e50;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-about p {
    font-size: 1.25rem;
}

.cta-about a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.cta-about a:hover {
    color: #5dade2;
}

.services-hero-irregular {
    padding: 8rem 5% 4rem 10%;
    background: #f8f9fa;
}

.services-intro-offset {
    max-width: 700px;
}

.services-intro-offset h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
}

.services-intro-offset p {
    font-size: 1.5rem;
    color: #546e7a;
}

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

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-block.elevated-left {
    transform: translateX(-50px);
}

.service-detail-block.offset-right-top {
    transform: translateY(-30px) translateX(30px);
}

.service-detail-block.centered-elevated {
    justify-content: center;
    transform: translateY(-20px);
}

.service-detail-block.asymmetric-bottom-left {
    transform: translateX(-30px) translateY(20px);
}

.service-detail-block.diagonal-placement {
    transform: rotate(-1deg);
}

.service-detail-block.wide-centered {
    flex-direction: column;
    align-items: center;
}

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.service-visual.elevated {
    transform: translateY(-40px);
}

.service-visual.wide {
    width: 100%;
    max-width: 1000px;
}

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info.offset-right {
    transform: translateX(30px);
}

.service-info.offset-left {
    transform: translateX(-30px);
}

.service-info.diagonal-offset {
    transform: translateY(20px) translateX(20px);
}

.service-info.full-width {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: block;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #546e7a;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.form-section-services {
    padding: 6rem 5%;
    background: #ecf0f1;
}

.form-container-irregular {
    max-width: 600px;
    margin-left: auto;
    margin-right: 8%;
    padding: 3rem;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container-irregular h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-container-irregular p {
    margin-bottom: 2rem;
    color: #546e7a;
}

.contact-hero-offset {
    padding: 8rem 5% 4rem 10%;
    background: #f8f9fa;
}

.contact-intro-irregular {
    max-width: 700px;
}

.contact-intro-irregular h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
}

.contact-intro-irregular p {
    font-size: 1.5rem;
    color: #546e7a;
}

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

.contact-layout-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.contact-block {
    width: calc(33.333% - 2rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 4px;
}

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

.contact-block.offset-right {
    transform: translateY(20px) translateX(30px);
}

.contact-block.centered-bottom {
    transform: translateY(10px);
}

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

.contact-block p {
    color: #546e7a;
    line-height: 1.7;
}

.note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.contact-visual-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    align-items: center;
    background: #ecf0f1;
}

.visual-left {
    flex: 1;
    background-color: #bdc3c7;
}

.visual-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-right-offset {
    flex: 1;
    padding: 2rem;
    transform: translateY(-30px);
}

.content-right-offset h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.content-right-offset p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.contact-cta-irregular {
    padding: 5rem 5% 5rem 12%;
}

.cta-content-offset {
    max-width: 700px;
}

.cta-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.cta-content-offset p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.cta-content-offset a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.cta-content-offset a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.thanks-hero-centered {
    padding: 8rem 5% 4rem 5%;
    background: #ecf0f1;
    text-align: center;
}

.thanks-content-irregular {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content-irregular h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.thanks-details {
    padding: 2rem;
    background: #ffffff;
    border-radius: 4px;
    margin-top: 2rem;
}

.thanks-next-steps-asymmetric {
    padding: 5rem 5%;
}

.next-steps-content-offset {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.steps-layout-scattered {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-block {
    flex: 1;
    max-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
}

.step-block.elevated {
    transform: translateY(-20px);
}

.step-block.offset-right {
    transform: translateY(20px) translateX(15px);
}

.step-block.centered {
    transform: translateY(-10px);
}

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

.step-block p {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-explore-irregular {
    padding: 5rem 5% 5rem 10%;
    background: #ecf0f1;
}

.explore-content-offset {
    max-width: 700px;
}

.explore-content-offset h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.explore-links-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.explore-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-align: center;
}

.explore-link:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateX(10px);
}

.legal-content {
    padding: 8rem 5% 5rem 5%;
    background: #ffffff;
}

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

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

.updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.75rem;
    color: #546e7a;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

    .story-split,
    .about-story-split,
    .service-detail-block {
        flex-direction: column;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .nav-right {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-center {
        order: -1;
    }

    .hero-text-block {
        transform: none;
        padding: 2rem;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .service-card,
    .value-block,
    .contact-block {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .about-intro-irregular h1,
    .services-intro-offset h1,
    .contact-intro-irregular h1 {
        font-size: 2.5rem;
    }

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