* {
    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;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style-position: inside;
}

.ad-disclosure {
    background-color: #F8F9FA;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6C757D;
    border-bottom: 1px solid #DEE2E6;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-links a {
    padding: 8px 15px;
    font-size: 15px;
    color: #495057;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #E9ECEF;
    color: #212529;
    transform: translateX(-5px);
}

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

.hero-content-offset {
    max-width: 520px;
    z-index: 2;
    padding-right: 40px;
}

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

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.5;
    color: #4A5568;
    margin-bottom: 35px;
}

.hero-image-overlap {
    position: absolute;
    right: -80px;
    top: 120px;
    width: 58%;
    height: 70vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2C3E50;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1A252F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.intro-offset {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 120px 60px 80px 160px;
    gap: 80px;
}

.intro-block-left {
    flex: 1;
    max-width: 580px;
}

.intro-block-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 18px;
    color: #4A5568;
    line-height: 1.7;
}

.intro-stats-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #F7FAFC;
    border-radius: 10px;
    border-left: 4px solid #2C3E50;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #718096;
    margin-top: 8px;
}

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

.section-header-offset {
    max-width: 620px;
    margin-bottom: 70px;
    margin-left: 60px;
}

.section-header-offset h2 {
    font-size: 46px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 18px;
}

.section-header-offset p {
    font-size: 19px;
    color: #4A5568;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-card.large-card {
    flex: 1 1 calc(50% - 15px);
}

.service-card.offset-top {
    margin-top: 50px;
}

.service-card.offset-bottom {
    margin-top: -50px;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 14px;
}

.service-content p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    display: block;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 24px;
    background-color: #E9ECEF;
    color: #2C3E50;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2C3E50;
    color: #FFFFFF;
    transform: scale(1.02);
}

.form-section-diagonal {
    display: flex;
    align-items: stretch;
    padding: 0;
    position: relative;
    min-height: 650px;
    margin-top: 80px;
}

.form-container-offset {
    flex: 1;
    padding: 80px 100px 80px 160px;
    background-color: #FFFFFF;
    z-index: 2;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 17px;
    color: #4A5568;
}

.contact-form {
    max-width: 560px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C3E50;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2C3E50;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1A252F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.form-note {
    font-size: 13px;
    color: #718096;
    margin-top: 16px;
    text-align: center;
}

.selected-service-display {
    background-color: #E8F4F8;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-clear {
    padding: 6px 12px;
    background-color: #FFFFFF;
    color: #2C3E50;
    border: 1px solid #CBD5E0;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background-color: #F7FAFC;
    border-color: #2C3E50;
}

.form-visual-element {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    transform: skewX(-8deg);
    transform-origin: top right;
}

.trust-section-overlap {
    display: flex;
    align-items: center;
    padding: 120px 60px 120px 120px;
    gap: 80px;
}

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

.trust-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 24px;
    line-height: 1.2;
}

.trust-content p {
    font-size: 18px;
    color: #4A5568;
    line-height: 1.7;
}

.trust-visual {
    width: 480px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: -60px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.trust-visual img {
    width: 100%;
    height: 100%;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #718096;
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-asymmetric {
    background-color: #1A202C;
    color: #E2E8F0;
    padding: 80px 60px 40px 100px;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    font-size: 14px;
    color: #CBD5E0;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #A0AEC0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 32, 44, 0.98);
    padding: 24px 40px;
    z-index: 9999;
    box-shadow: 0 -4px 16px 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 {
    color: #E2E8F0;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

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

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

.btn-accept {
    background-color: #48BB78;
    color: #FFFFFF;
}

.btn-accept:hover {
    background-color: #38A169;
}

.btn-reject {
    background-color: #E2E8F0;
    color: #2D3748;
}

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

.page-hero-minimal {
    padding: 140px 60px 60px 160px;
    background-color: #F8F9FA;
}

.page-hero-minimal h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4A5568;
    margin-top: 16px;
}

.about-story-offset {
    display: flex;
    align-items: center;
    padding: 100px 60px 100px 100px;
    gap: 70px;
}

.story-image-left {
    width: 50%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.story-image-left img {
    width: 100%;
    height: 100%;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-content-right p {
    font-size: 17px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 18px;
}

.approach-irregular {
    padding: 100px 60px 100px 160px;
    background-color: #F8F9FA;
}

.approach-header {
    margin-bottom: 60px;
}

.approach-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1A202C;
}

.approach-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
}

.approach-card.offset-1 {
    margin-top: 0;
}

.approach-card.offset-2 {
    margin-top: 40px;
}

.approach-card.offset-3 {
    margin-top: -30px;
}

.approach-card.offset-4 {
    margin-top: 20px;
}

.approach-number {
    font-size: 48px;
    font-weight: 800;
    color: #E2E8F0;
    display: block;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 14px;
}

.approach-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

.values-diagonal {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    position: relative;
}

.values-content-offset {
    flex: 1;
    padding: 100px 80px 100px 160px;
    background-color: #FFFFFF;
}

.values-content-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 50px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
}

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

.values-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    transform: skewX(-6deg);
    transform-origin: top right;
}

.team-highlight-offset {
    padding: 100px 120px 100px 100px;
}

.team-highlight-offset h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
}

.team-intro {
    font-size: 18px;
    color: #4A5568;
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 60px;
}

.expertise-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-block {
    background-color: #F7FAFC;
    padding: 36px;
    border-radius: 10px;
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    border-left: 4px solid #2C3E50;
}

.expertise-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 12px;
}

.expertise-block p {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
}

.services-detailed-offset {
    padding: 80px 60px 80px 100px;
}

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

.service-detail-block.left-align {
    flex-direction: row;
}

.service-detail-block.right-align {
    flex-direction: row-reverse;
    margin-left: 80px;
}

.service-detail-image {
    width: 45%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

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

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

.service-detail-content p {
    font-size: 17px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 16px;
    margin-top: 8px;
}

.service-detail-content ul {
    margin-bottom: 28px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #F7FAFC;
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: #718096;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2C3E50;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background-color: #1A252F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.cta-services-final {
    padding: 80px 60px;
    background-color: #F8F9FA;
    text-align: center;
}

.cta-services-final h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 18px;
}

.cta-services-final p {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 32px;
}

.contact-layout-split {
    display: flex;
    align-items: stretch;
    padding: 100px 60px 100px 160px;
    gap: 80px;
}

.contact-info-offset {
    flex: 1;
    max-width: 600px;
}

.contact-info-offset h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 50px;
}

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

.contact-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.contact-block p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.7;
}

.contact-note {
    padding: 24px;
    background-color: #F7FAFC;
    border-radius: 8px;
    border-left: 4px solid #2C3E50;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
}

.contact-visual-section {
    width: 45%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    margin-top: 60px;
}

.contact-visual-section img {
    width: 100%;
    height: 100%;
}

.location-info-asymmetric {
    padding: 80px 120px 100px 160px;
    background-color: #F8F9FA;
}

.location-info-asymmetric h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 28px;
}

.location-content p {
    font-size: 17px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 900px;
}

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

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

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

.thanks-content > p {
    font-size: 19px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-service-info {
    padding: 20px 30px;
    background-color: #E8F4F8;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #2C3E50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 32px;
    background-color: #F7FAFC;
    border-radius: 10px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
}

.thanks-next-steps ol {
    counter-reset: item;
    list-style-type: none;
}

.thanks-next-steps ol li {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    counter-increment: item;
}

.thanks-next-steps ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2C3E50;
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.thanks-note {
    font-size: 14px;
    color: #718096;
    margin-bottom: 32px;
}

.legal-page {
    padding: 100px 60px 80px 160px;
    max-width: 1200px;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2C3E50;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1A252F;
}

@media (max-width: 1200px) {
    .floating-nav {
        top: 20px;
        right: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-content-offset {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .services-irregular {
        padding: 80px 40px;
    }

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

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container-offset {
        padding: 60px 40px;
    }

    .form-visual-element {
        display: none;
    }

    .trust-section-overlap {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .trust-visual {
        width: 100%;
        margin-top: 0;
    }

    .about-story-offset {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .story-image-left {
        width: 100%;
    }

    .approach-irregular {
        padding: 80px 40px;
    }

    .values-diagonal {
        flex-direction: column;
    }

    .values-content-offset {
        padding: 60px 40px;
    }

    .values-visual {
        display: none;
    }

    .team-highlight-offset {
        padding: 80px 40px;
    }

    .service-detail-block {
        flex-direction: column !important;
        margin-left: 0 !important;
        gap: 40px;
    }

    .service-detail-image {
        width: 100%;
    }

    .contact-layout-split {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .contact-visual-section {
        width: 100%;
        margin-top: 0;
    }

    .location-info-asymmetric {
        padding: 60px 40px;
    }

    .page-hero-minimal {
        padding: 100px 40px 60px 40px;
    }

    .legal-page {
        padding: 80px 40px;
    }

    .footer-asymmetric {
        padding: 60px 40px 30px 40px;
    }

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

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 36px;
    }

    .section-header-offset h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-card.offset-top,
    .service-card.offset-bottom {
        margin-top: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .floating-nav {
        position: relative;
        top: 0;
        right: 0;
        align-items: stretch;
        background-color: #FFFFFF;
        padding: 15px;
    }

    .nav-brand {
        text-align: center;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .approach-card {
        flex: 1 1 100%;
    }

    .approach-card.offset-1,
    .approach-card.offset-2,
    .approach-card.offset-3,
    .approach-card.offset-4 {
        margin-top: 0;
    }

    .expertise-block {
        flex: 1 1 100%;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}