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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #9acd32;
    --dark-color: #1a2e0a;
    --light-color: #f4f7f0;
    --text-color: #2c3e1f;
    --gray-color: #7a8a6f;
    --bg-light: #fafcf7;
    --bg-cream: #f9faf6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
}

.hero-content-offset {
    width: 55%;
    padding-top: 120px;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 100px;
    width: 60%;
    height: 80%;
    transform: rotate(3deg);
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary,
.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

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

.cta-secondary,
.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.intro-text-block {
    width: 60%;
    padding-left: 40px;
}

.intro-text-block h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.intro-visual-element {
    width: 40%;
    transform: rotate(-2deg);
    margin-top: -60px;
}

.intro-visual-element img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-cream);
}

.services-preview-irregular {
    padding: 120px 60px;
    background-color: var(--bg-cream);
}

.section-header-offset {
    margin-left: 120px;
    margin-bottom: 80px;
    max-width: 600px;
}

.section-header-offset h2 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-header-offset p {
    font-size: 19px;
    color: var(--gray-color);
}

.services-asymmetric-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    align-items: center;
}

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

.service-card.offset-left {
    margin-right: 120px;
}

.service-card.offset-right {
    margin-left: 150px;
}

.service-card.offset-bottom {
    margin-right: 60px;
}

.service-card.offset-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.service-card.offset-top-right {
    margin-left: 100px;
}

.service-image {
    width: 280px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.select-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-inline-offset {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 60px 120px 60px 80px;
    border-radius: 20px;
    transform: rotate(-1deg);
}

.cta-content {
    transform: rotate(1deg);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-content .cta-secondary {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

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

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

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

.values-content h2 {
    font-size: 46px;
    color: var(--dark-color);
    margin-bottom: 60px;
    margin-left: 60px;
}

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

.value-item {
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.value-item:nth-child(1) {
    margin-left: 0;
}

.value-item:nth-child(2) {
    margin-left: 100px;
}

.value-item:nth-child(3) {
    margin-left: 50px;
}

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

.value-item p {
    font-size: 17px;
    color: var(--gray-color);
    line-height: 1.7;
}

.form-section-overlap {
    padding: 100px 60px;
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto 0 150px;
    padding: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-0.5deg);
}

.form-container h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-container p {
    font-size: 17px;
    color: var(--gray-color);
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: var(--bg-cream);
    margin: 0 100px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.8;
    text-align: justify;
}

.footer-asymmetric {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 60px 30px;
    margin-top: 80px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8c9a8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b8c9a8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 46, 10, 0.97);
    color: white;
    padding: 25px 40px;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

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

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

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

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

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

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

.btn-reject:hover {
    background-color: white;
    color: var(--dark-color);
}

.page-hero-offset {
    padding: 150px 60px 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--light-color) 100%);
    margin-bottom: 60px;
}

.hero-text-content {
    max-width: 800px;
    margin-left: 80px;
}

.hero-text-content h1 {
    font-size: 52px;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text-content p {
    font-size: 20px;
    color: var(--gray-color);
    line-height: 1.6;
}

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

.story-block-left {
    width: 45%;
    transform: rotate(-1.5deg);
}

.story-block-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.story-text-right {
    width: 55%;
    padding-left: 30px;
}

.story-text-right h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.story-text-right p {
    font-size: 17px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-diagonal {
    padding: 100px 60px;
    background-color: var(--bg-cream);
    transform: skewY(-2deg);
    margin: 60px 0;
}

.approach-content {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.approach-content h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.approach-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.expertise-overlap {
    padding: 100px 60px;
}

.expertise-overlap h2 {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 60px;
    margin-left: 40px;
}

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

.expertise-item {
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.expertise-item:nth-child(1) {
    margin-left: 0;
}

.expertise-item:nth-child(2) {
    margin-left: 80px;
}

.expertise-item:nth-child(3) {
    margin-left: 40px;
}

.expertise-item:nth-child(4) {
    margin-left: 120px;
}

.expertise-item h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.expertise-item p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.7;
}

.values-offset-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.values-text-block {
    max-width: 900px;
    margin: 0 auto 0 120px;
}

.values-text-block h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.values-text-block p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-bottom-asymmetric {
    padding: 100px 60px;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    color: white;
    transform: rotate(1deg);
}

.cta-wrapper h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

.service-detail-block.offset-pattern-1 {
    margin-left: 0;
}

.service-detail-block.offset-pattern-2 {
    margin-right: 60px;
}

.service-detail-block.offset-pattern-3 {
    margin-left: 80px;
}

.service-detail-block.offset-pattern-4 {
    margin-right: 40px;
}

.service-detail-block.offset-pattern-5 {
    margin-left: 40px;
}

.service-detail-block.offset-pattern-6 {
    margin-right: 80px;
}

.service-detail-image {
    width: 45%;
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-includes {
    margin: 30px 0;
}

.service-includes h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    font-size: 16px;
    color: var(--gray-color);
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-includes ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing-box {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-asymmetric {
    display: flex;
    gap: 70px;
    padding: 80px 60px;
}

.contact-block-left {
    width: 45%;
    padding-right: 30px;
}

.contact-block-left h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.7;
}

.contact-visual-right {
    width: 55%;
    transform: rotate(2deg);
}

.contact-visual-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.contact-approach-section {
    padding: 100px 60px;
    background-color: var(--bg-cream);
}

.approach-content-centered {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content-centered h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 60px;
    text-align: center;
}

.steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 30px;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.step-item:nth-child(1) {
    margin-left: 0;
}

.step-item:nth-child(2) {
    margin-left: 60px;
}

.step-item:nth-child(3) {
    margin-left: 30px;
}

.step-item:nth-child(4) {
    margin-left: 90px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step-item h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.7;
}

.location-info-offset {
    padding: 80px 60px;
}

.location-text {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.location-text h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.location-text p {
    font-size: 17px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.impressum-section {
    padding: 80px 60px;
    background-color: var(--bg-cream);
}

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

.impressum-content h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.impressum-content p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-info {
    margin: 30px 0;
}

.selected-service-display {
    font-size: 17px;
    color: var(--secondary-color);
    padding: 15px 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: inline-block;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.next-steps-section {
    padding: 80px 60px;
    background-color: var(--bg-cream);
}

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

.next-steps-content h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
}

.timeline-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.timeline-item:nth-child(1) {
    margin-left: 0;
}

.timeline-item:nth-child(2) {
    margin-left: 80px;
}

.timeline-item:nth-child(3) {
    margin-left: 40px;
}

.timeline-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-item p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.7;
}

.legal-page-content {
    padding: 120px 60px;
}

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

.legal-container h1 {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul,
.legal-container ol {
    margin: 15px 0 25px 30px;
}

.legal-container li {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container em {
    color: var(--gray-color);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 0;
        padding: 15px 30px;
    }

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

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

    .hero-content-offset {
        width: 100%;
        padding: 0;
    }

    .hero-content-offset h1 {
        font-size: 40px;
    }

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

    .intro-offset,
    .about-story-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .intro-text-block,
    .intro-visual-element,
    .story-block-left,
    .story-text-right,
    .contact-block-left,
    .contact-visual-right {
        width: 100%;
        padding: 0;
        margin: 0;
        transform: none;
    }

    .service-card {
        flex-direction: column;
        margin: 0 !important;
    }

    .service-image {
        width: 100%;
    }

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

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

    .form-container {
        margin: 0;
        transform: none;
    }

    .cta-inline-offset,
    .approach-diagonal {
        margin: 40px 20px;
        transform: none;
    }

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

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

    .values-text-block,
    .location-text,
    .approach-content {
        margin: 0;
    }

    .expertise-item,
    .value-item,
    .step-item,
    .timeline-item {
        margin: 0 !important;
    }
}