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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #57c5b6;
    --accent-color: #159895;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.floating-nav {
    position: fixed;
    top: 30px;
    right: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-radius: 50px;
    z-index: 1000;
    padding: 15px 35px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 20px;
    margin-left: 15px;
}

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

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

.hero-text-block h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 38px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 18px 42px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 52%;
    transform: rotate(3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.intro-offset {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: var(--bg-light);
}

.intro-narrow {
    flex: 1;
    max-width: 580px;
    padding-left: 8%;
}

.intro-narrow h2 {
    font-size: 2.6rem;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.intro-visual-card {
    position: relative;
    flex: 0 0 420px;
    margin-top: -60px;
}

.intro-visual-card img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--accent-color);
    color: white;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
}

.services-irregular {
    padding: 140px 60px;
    background: var(--bg-white);
}

.section-header-offset {
    max-width: 650px;
    margin-left: 12%;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 22px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-asymmetric-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.offset-left {
    margin-left: 5%;
    margin-right: 15%;
}

.offset-right {
    margin-left: 18%;
    margin-right: 3%;
    flex-direction: row-reverse;
}

.offset-center {
    margin-left: 10%;
    margin-right: 10%;
}

.service-image-wrapper {
    flex: 0 0 45%;
    height: 320px;
    background: var(--bg-light);
}

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

.service-content {
    flex: 1;
    padding: 35px;
}

.service-content h3 {
    font-size: 1.9rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 22px;
    display: block;
}

.btn-select {
    padding: 14px 34px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

.trust-diagonal {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content-block {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.trust-content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    font-weight: 700;
}

.trust-content-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.form-section-offset {
    padding: 120px 60px;
    background: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 750px;
    margin-left: 15%;
    background: var(--bg-white);
    padding: 55px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

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

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.benefits-stacked {
    padding: 120px 60px;
    background: var(--bg-white);
}

.benefit-block {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 20px;
    margin-left: 8%;
}

.benefit-reverse {
    margin-left: auto;
    margin-right: 8%;
}

.benefit-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 70px 60px 30px;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

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

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.75;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--accent-color);
}

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

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

.page-header-diagonal {
    padding: 180px 60px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-header-diagonal h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.page-header-diagonal p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.offset-layout-1 {
    margin-left: 5%;
}

.offset-layout-2 {
    margin-right: 5%;
}

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

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.pricing-display {
    margin: 30px 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.btn-action {
    padding: 15px 38px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-detail-image {
    flex: 0 0 480px;
    height: 400px;
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
}

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

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

.about-content-block {
    flex: 1;
    max-width: 550px;
    margin-left: 5%;
}

.about-content-block h1 {
    font-size: 3.2rem;
    margin-bottom: 26px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.15;
}

.about-content-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image-diagonal {
    flex: 1;
    transform: rotate(-2deg);
}

.about-image-diagonal img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.mission-asymmetric {
    padding: 100px 60px;
    background: var(--bg-light);
    display: flex;
    gap: 80px;
}

.mission-text {
    flex: 1;
    padding-left: 8%;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.mission-highlight {
    flex: 0 0 380px;
    background: var(--primary-color);
    color: white;
    padding: 45px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.mission-highlight p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
}

.values-stacked {
    padding: 100px 60px;
}

.value-block {
    max-width: 700px;
    padding: 50px;
    margin: 50px auto;
    background: var(--bg-light);
    border-radius: 18px;
}

.reverse-diagonal {
    margin-left: auto;
    margin-right: 10%;
}

.standard-flow {
    margin-left: 10%;
}

.value-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.expertise-section {
    padding: 100px 60px;
    background: var(--bg-white);
}

.expertise-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-content-wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.expertise-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.expertise-item {
    flex: 1 1 calc(50% - 20px);
    padding: 35px;
    background: var(--bg-light);
    border-radius: 16px;
}

.expertise-item:nth-child(odd) {
    transform: translateY(-15px);
}

.expertise-item h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.expertise-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.commitment-diagonal {
    padding: 100px 60px;
    background: var(--bg-light);
}

.commitment-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.commitment-wrapper p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-header-diagonal {
    padding: 180px 60px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: white;
}

.contact-header-diagonal h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-header-diagonal p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-content-offset {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
    padding-left: 8%;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-visual-block {
    flex: 0 0 450px;
    position: relative;
}

.contact-visual-block img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.contact-note {
    margin-top: 25px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.directions-section {
    padding: 80px 60px;
    background: var(--bg-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.directions-section h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.directions-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-hero {
    padding: 140px 60px 80px;
    display: flex;
    gap: 70px;
    align-items: center;
    min-height: 80vh;
}

.thanks-content {
    flex: 1;
    max-width: 650px;
    margin-left: 5%;
}

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

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.confirmation-details {
    margin-bottom: 45px;
}

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

.detail-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.detail-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.detail-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.next-steps {
    display: flex;
    gap: 20px;
}

.btn-home {
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.thanks-visual {
    flex: 0 0 450px;
}

.thanks-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.legal-page {
    padding: 140px 60px 80px;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 45px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--accent-color);
    font-weight: 600;
}

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

    .hero-offset-content {
        margin-left: 0;
        max-width: 100%;
    }

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

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

    .intro-narrow {
        padding-left: 0;
        max-width: 100%;
    }

    .intro-visual-card {
        flex: 1;
        margin-top: 0;
        max-width: 100%;
    }

    .services-asymmetric-grid .service-card {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .offset-right {
        flex-direction: column;
    }

    .service-image-wrapper {
        flex: none;
        width: 100%;
    }

    .trust-stats {
        flex-direction: column;
        gap: 35px;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

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

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

    .about-hero-offset {
        flex-direction: column;
    }

    .about-content-block {
        margin-left: 0;
        max-width: 100%;
    }

    .mission-asymmetric {
        flex-direction: column;
    }

    .mission-text {
        padding-left: 0;
    }

    .mission-highlight {
        flex: none;
        width: 100%;
        margin-top: 20px;
    }

    .contact-content-offset {
        flex-direction: column;
    }

    .contact-info-block {
        padding-left: 0;
    }

    .contact-visual-block {
        flex: none;
        width: 100%;
    }

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

    .thanks-content {
        margin-left: 0;
        max-width: 100%;
    }

    .thanks-visual {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        margin: 0;
        border-radius: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.85rem;
    }

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

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

    .benefit-block,
    .benefit-reverse {
        margin-left: 0;
        margin-right: 0;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

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

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