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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-asymmetric {
    margin-top: 80px;
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-offset-left {
    flex: 1;
    padding: 6rem 3rem 4rem 4rem;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 580px;
}

.hero-offset-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-right {
    flex: 1.3;
    position: relative;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.intro-text-offset {
    flex: 1.2;
    padding-right: 3rem;
}

.intro-text-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.intro-image-overlap {
    flex: 1;
    position: relative;
    background-color: #bdc3c7;
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-staggered {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 4rem 6rem;
    font-size: 2.8rem;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 1 1 calc(50% - 1rem);
}

.card-offset {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 3rem;
}

.card-wide {
    flex: 1 1 calc(58% - 1rem);
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
    margin-top: -2rem;
}

.card-medium {
    flex: 1 1 calc(48% - 1rem);
}

.card-elevated {
    flex: 1 1 calc(50% - 1rem);
    margin-top: 2rem;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-split {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
}

.cta-left-block {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 4rem;
}

.cta-left-block h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-left-block p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.cta-right-action {
    flex: 0 0 auto;
}

.cta-secondary {
    padding: 1.2rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 8rem;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-block-offset {
    padding: 5rem 2rem 5rem 6rem;
    background-color: var(--bg-light);
}

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

.trust-content h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0,0,0,0.2);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-cookie.accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

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

.btn-cookie.reject:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.page-header-offset {
    margin-top: 80px;
    padding: 4rem 2rem 3rem 6rem;
    background-color: var(--bg-light);
}

.header-content-left {
    max-width: 1400px;
    margin: 0 auto;
}

.header-content-left h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
}

.about-story-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.about-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text-main {
    flex: 1.3;
    padding-right: 2rem;
}

.about-text-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text-main p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image-overlap {
    flex: 1;
    margin-top: 3rem;
    background-color: #95a5a6;
}

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

.values-staggered {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.values-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-block {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.block-large {
    flex: 1 1 calc(55% - 1.25rem);
}

.block-offset {
    flex: 1 1 calc(43% - 1.25rem);
    margin-top: 4rem;
}

.block-elevated {
    flex: 1 1 calc(100% - 1.25rem);
    margin-top: -2rem;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.approach-split {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image-side {
    flex: 1;
    background-color: #95a5a6;
}

.approach-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-content-side {
    flex: 1.2;
    padding: 0 3rem;
}

.approach-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-content-side p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-list {
    list-style: none;
    margin-top: 2rem;
}

.approach-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.approach-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.team-minimal {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.team-minimal h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.coverage-block {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
}

.coverage-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.coverage-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.coverage-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.block-wide {
    flex-direction: row;
}

.block-offset-right {
    flex-direction: row;
    margin-left: 5rem;
}

.block-offset-left {
    flex-direction: row;
    margin-right: 5rem;
}

.block-elevated {
    flex-direction: row;
    margin-top: 3rem;
}

.block-centered {
    flex-direction: row;
}

.block-compact {
    flex-direction: row;
    max-width: 1200px;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-color: #95a5a6;
}

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

.service-detail-content {
    flex: 1.2;
    padding: 3rem;
    background-color: var(--bg-white);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 1rem;
}

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

.cta-services-bottom {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-services-bottom p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-layout-split {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.contact-info-offset {
    max-width: 700px;
    margin-left: 8rem;
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-detail-block {
    margin-bottom: 2.5rem;
}

.contact-detail-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

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

.email-display {
    color: var(--text-dark);
    font-weight: 600;
}

.note-emergency {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.impressum-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.impressum-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.impressum-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.dispute-resolution {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.dispute-resolution h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.dispute-resolution p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.link-display {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-container {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.thanks-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content-centered h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-selected {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
}

.steps-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.steps-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
    margin-top: 80px;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.update-date {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

    .intro-grid,
    .about-grid-irregular,
    .approach-split {
        flex-direction: column;
    }

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

    .service-detail-image {
        min-height: 300px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-split {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-left-block {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .services-asymmetric-grid .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .values-grid-asymmetric .value-block {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title-offset {
        margin-left: 2rem;
    }

    .form-container-offset,
    .contact-info-offset {
        margin-left: 0;
    }

    .page-header-offset {
        padding-left: 2rem;
    }

    .trust-block-offset {
        padding-left: 2rem;
    }

    .trust-points {
        flex-direction: column;
        gap: 2rem;
    }
}