* {
    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: #1a1a1a;
    background: #f8f8f8;
    padding-left: 280px;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    background: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    z-index: 100;
    border-bottom: 1px solid #ffeaa7;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 50;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.brand-mark {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    margin-bottom: 40px;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

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

.nav-footer a {
    color: #999999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.nav-footer a:hover {
    color: #ffffff;
}

.asymmetric-layout {
    margin-top: 35px;
}

.hero-offset {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 85vh;
    margin-bottom: 0;
    position: relative;
}

.hero-content-block {
    width: 42%;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content-block h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.hero-visual-offset {
    width: 58%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-visual-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.value-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #2a2a2a;
    color: #ffffff;
    padding: 50px 60px;
    gap: 40px;
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-item strong {
    font-size: 36px;
    color: #ff6b35;
    font-weight: 700;
}

.value-item span {
    font-size: 15px;
    color: #cccccc;
}

.services-asymmetric {
    padding: 100px 60px;
    background: #ffffff;
}

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

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: #f9f9f9;
    overflow: hidden;
}

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

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

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

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

.service-card.offset-right-large {
    margin-left: 160px;
    margin-right: 20px;
}

.service-card.offset-center-small {
    margin-left: 80px;
    margin-right: 80px;
}

.service-image {
    width: 45%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 12px;
}

.price-tag {
    font-size: 24px;
    color: #ff6b35;
    font-weight: 700;
    margin: 20px 0;
}

.select-service {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background: #ff6b35;
    transform: translateX(5px);
}

.process-diagonal {
    background: #1a1a1a;
    color: #ffffff;
    padding: 100px 80px 100px 140px;
    position: relative;
}

.process-diagonal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 50px;
}

.step {
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

.form-section {
    background: #f0f0f0;
    padding: 100px 60px;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 80px;
    background: #ffffff;
    padding: 60px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 15px;
    border: 2px solid #dddddd;
    background: #ffffff;
    color: #1a1a1a;
    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: #ff6b35;
}

.submit-btn {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    padding: 100px 80px 100px 180px;
    background: #ffffff;
}

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

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    max-width: 800px;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 80px 40px 80px;
}

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

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

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

.footer-block li {
    margin-bottom: 10px;
}

.footer-block a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #ff6b35;
}

.disclaimer {
    border-top: 1px solid #333333;
    padding-top: 30px;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 13px;
    color: #777777;
    line-height: 1.7;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 280px;
    right: 0;
    background: #ffffff;
    padding: 30px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.cookie-accept {
    background: #ff6b35;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #e55a28;
}

.cookie-reject {
    background: #dddddd;
    color: #1a1a1a;
}

.cookie-reject:hover {
    background: #cccccc;
}

.about-hero {
    padding: 80px 80px 60px 80px;
    background: #ffffff;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 22px;
    color: #444444;
    line-height: 1.6;
    max-width: 800px;
}

.about-story-offset {
    display: flex;
    gap: 60px;
    padding: 80px 80px 80px 140px;
    background: #f9f9f9;
    align-items: center;
}

.story-image {
    width: 45%;
    min-height: 400px;
    overflow: hidden;
}

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

.story-text {
    width: 55%;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 100px 60px;
    background: #ffffff;
}

.values-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-card {
    padding: 40px;
    background: #f9f9f9;
}

.value-card.offset-a {
    margin-left: 40px;
    margin-right: 160px;
}

.value-card.offset-b {
    margin-left: 140px;
    margin-right: 60px;
}

.value-card.offset-c {
    margin-left: 80px;
    margin-right: 120px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
}

.team-section {
    padding: 100px 80px 100px 120px;
    background: #1a1a1a;
    color: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.team-intro {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 60px;
}

.team-members {
    display: flex;
    gap: 60px;
}

.member {
    flex: 1;
}

.member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.role {
    font-size: 15px;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 600;
}

.member p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

.approach-diagonal {
    padding: 100px 100px 100px 180px;
    background: #f0f0f0;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 25px;
    max-width: 850px;
}

.cta-offset {
    padding: 100px 80px;
    background: #ffffff;
    text-align: center;
}

.cta-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-offset p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #e55a28;
    transform: translateY(-2px);
}

.services-hero {
    padding: 80px 80px 60px 80px;
    background: #ffffff;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-services {
    font-size: 20px;
    color: #444444;
    line-height: 1.7;
    max-width: 800px;
}

.detailed-services {
    padding: 60px 0;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail {
    display: flex;
    gap: 50px;
    background: #ffffff;
    padding: 0;
}

.service-detail.offset-layout-a {
    margin-left: 60px;
    margin-right: 120px;
}

.service-detail.offset-layout-b {
    margin-left: 140px;
    margin-right: 40px;
}

.service-detail.offset-layout-c {
    margin-left: 80px;
    margin-right: 100px;
}

.service-detail.offset-layout-d {
    margin-left: 40px;
    margin-right: 140px;
}

.service-detail.offset-layout-e {
    margin-left: 120px;
    margin-right: 60px;
}

.service-detail.offset-layout-f {
    margin-left: 100px;
    margin-right: 80px;
}

.service-visual {
    width: 50%;
    min-height: 450px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-description {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-description h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 18px;
}

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

.feature-list li {
    font-size: 15px;
    color: #444444;
    padding: 8px 0 8px 25px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.pricing-info .price {
    font-size: 28px;
    color: #ff6b35;
    font-weight: 700;
}

.additional-info-asymmetric {
    padding: 100px 80px 100px 140px;
    background: #1a1a1a;
    color: #ffffff;
}

.additional-info-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
}

.extras-grid {
    display: flex;
    gap: 50px;
}

.extra-item {
    flex: 1;
}

.extra-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.extra-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

.service-cta-section {
    padding: 100px 80px;
    background: #ffffff;
    text-align: center;
}

.service-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-cta-section p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 35px;
}

.cta-inline {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background: #e55a28;
    transform: translateY(-2px);
}

.contact-hero {
    padding: 80px 80px 60px 80px;
    background: #ffffff;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: #444444;
    line-height: 1.7;
    max-width: 800px;
}

.contact-info-asymmetric {
    padding: 80px 100px 80px 140px;
    background: #f9f9f9;
    display: flex;
    gap: 80px;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-block address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.email-display {
    font-size: 16px;
    color: #444444;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: #777777;
    font-style: italic;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.hours-table td {
    padding: 10px 15px 10px 0;
    font-size: 15px;
    color: #444444;
    border-bottom: 1px solid #e0e0e0;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-note {
    font-size: 14px;
    color: #777777;
    font-style: italic;
}

.direction-info {
    padding: 80px 80px 80px 120px;
    background: #ffffff;
}

.direction-info h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.direction-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    max-width: 800px;
    margin-bottom: 20px;
}

.contact-cta-offset {
    padding: 100px 100px 100px 160px;
    background: #f0f0f0;
}

.contact-cta-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-cta-offset p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 35px;
    max-width: 700px;
}

.thanks-hero {
    padding: 100px 80px;
    background: #ffffff;
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    color: #444444;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto;
    border-radius: 50%;
}

.next-steps-asymmetric {
    padding: 80px 100px 80px 140px;
    background: #f9f9f9;
}

.next-steps-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
}

.thanks-info {
    padding: 80px 80px 80px 120px;
    background: #ffffff;
}

.thanks-info h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 35px;
    max-width: 800px;
}

.thanks-links {
    display: flex;
    gap: 20px;
}

.thanks-link {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.thanks-link:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.contact-reminder {
    padding: 60px 80px;
    background: #f0f0f0;
    text-align: center;
}

.contact-reminder p {
    font-size: 16px;
    color: #444444;
    margin-bottom: 15px;
}

.service-selected {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.email-text {
    color: #444444;
    font-weight: 600;
}

.legal-content {
    padding: 80px 100px;
    background: #ffffff;
    max-width: 1200px;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 8px;
}

.legal-section address {
    font-style: normal;
}

@media (max-width: 1024px) {
    body {
        padding-left: 0;
    }

    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
        padding: 30px 20px;
    }

    .logo-area {
        margin-bottom: 30px;
    }

    .nav-links {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .ad-disclosure {
        left: 0;
    }

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

    .hero-content-block,
    .hero-visual-offset {
        width: 100%;
    }

    .value-strip {
        flex-direction: column;
    }

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

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

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

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

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

    .cookie-banner {
        left: 0;
    }

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

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

    .story-image,
    .story-text {
        width: 100%;
    }

    .values-asymmetric h2 {
        margin-left: 0;
    }

    .value-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .team-members {
        flex-direction: column;
    }

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

    .service-visual,
    .service-description {
        width: 100%;
    }

    .extras-grid {
        flex-direction: column;
    }

    .contact-info-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }
}