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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #60a5fa;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fcd34d;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: relative;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 8% 80px 8%;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-left: 0;
    margin-top: -40px;
}

.hero-text-block {
    background-color: var(--bg-white);
    padding: 45px;
    border-left: 6px solid var(--primary-color);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.hero-image-overlap {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    z-index: 1;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.intro-offset {
    padding: 100px 8%;
    position: relative;
}

.intro-narrow {
    max-width: 680px;
    margin-left: 15%;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-narrow p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.intro-stats-scattered {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    position: relative;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 30px 40px;
    border-radius: 4px;
    text-align: center;
    position: relative;
}

.stat-1 {
    transform: translateY(-20px);
}

.stat-2 {
    transform: translateY(10px);
}

.stat-3 {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--text-medium);
}

.approach-diagonal {
    display: flex;
    align-items: center;
    padding: 80px 0;
    gap: 60px;
    background-color: var(--bg-light);
}

.approach-image-left {
    width: 42%;
    margin-left: 8%;
}

.approach-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--border-color);
}

.approach-content-right {
    width: 42%;
    margin-right: 8%;
}

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

.approach-content-right p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.services-asymmetric {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

.services-header-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.services-header-offset p {
    font-size: 18px;
    color: var(--text-medium);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-medium {
    flex: 1 1 calc(45% - 15px);
}

.service-small {
    flex: 1 1 calc(33% - 20px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 12px;
    color: var(--text-dark);
}

.service-card p {
    margin: 0 25px 20px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

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

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.contact-form-offset {
    margin-top: 60px;
    margin-left: 20%;
    max-width: 600px;
}

.form-container {
    background-color: var(--bg-light);
    padding: 45px;
    border-radius: 4px;
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-container > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-field input,
.form-field textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.form-field input[readonly] {
    background-color: #e5e7eb;
    cursor: not-allowed;
}

.cta-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: var(--secondary-color);
}

.testimonials-overlap {
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.testimonials-overlap h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-scattered {
    display: flex;
    gap: 40px;
    position: relative;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
    flex: 1;
}

.testimonial-1 {
    transform: translateY(-20px);
}

.testimonial-2 {
    transform: translateY(20px);
}

.testimonial-3 {
    transform: translateY(0);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.cta-diagonal {
    padding: 80px 8%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

.cta-diagonal .cta-secondary:hover {
    background-color: transparent;
    color: white;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 25px 8%;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

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

.cookie-btn.accept:hover {
    background-color: #059669;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 14px;
}

.page-hero-offset {
    padding: 100px 8% 60px;
    background-color: var(--bg-light);
    margin-bottom: 60px;
}

.page-hero-content {
    max-width: 700px;
    margin-left: 10%;
}

.page-hero-content h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-medium);
}

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

.story-text-wide {
    flex: 1.2;
}

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

.story-text-wide p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-offset {
    flex: 1;
    transform: translateY(30px);
}

.story-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.values-scattered {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.values-scattered h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 4px;
    border-top: 4px solid var(--primary-color);
    flex: 1 1 calc(50% - 15px);
}

.value-pos-1 {
    transform: translateY(-15px);
}

.value-pos-2 {
    transform: translateY(15px);
}

.value-pos-3 {
    transform: translateY(10px);
}

.value-pos-4 {
    transform: translateY(-10px);
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-diagonal {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: center;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.team-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-image {
    flex: 1;
}

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

.process-offset {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.process-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
}

.step-1 {
    transform: translateY(-10px);
}

.step-2 {
    transform: translateY(10px);
}

.step-3 {
    transform: translateY(0);
}

.step-4 {
    transform: translateY(-15px);
}

.step-5 {
    transform: translateY(5px);
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.services-detail-asymmetric {
    padding: 60px 8%;
}

.services-intro-offset {
    max-width: 700px;
    margin-left: 8%;
    margin-bottom: 60px;
}

.services-intro-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro-offset p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.detail-1 {
    padding-left: 0;
}

.detail-2 {
    padding-right: 5%;
}

.detail-3 {
    padding-left: 5%;
}

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

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

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

.service-detail-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-medium);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-services-offset {
    padding: 80px 8%;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-services-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-services-offset p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-asymmetric {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-offset {
    flex: 1;
}

.contact-info-offset h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-image-diagonal {
    flex: 1;
    transform: translateY(40px);
}

.contact-image-diagonal img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.contact-approach {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.approach-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.approach-content-centered p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-content-centered .cta-primary {
    margin-top: 20px;
}

.location-info {
    padding: 80px 8%;
}

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

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

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

.location-directions {
    margin-top: 40px;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 4px;
}

.location-directions h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.location-directions p {
    margin-bottom: 20px;
}

.legal-page {
    padding: 80px 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

.thanks-container {
    padding: 100px 8%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-steps {
    margin-left: 20px;
}

.thanks-steps li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px 8%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

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

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

    .hero-text-block h1 {
        font-size: 36px;
    }

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

    .intro-stats-scattered {
        flex-direction: column;
        gap: 20px;
    }

    .stat-1, .stat-2, .stat-3 {
        transform: none;
    }

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

    .approach-image-left,
    .approach-content-right {
        width: 100%;
        margin: 0;
    }

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

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .contact-form-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .testimonials-scattered {
        flex-direction: column;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        transform: none;
    }

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

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

    .page-hero-content {
        margin-left: 0;
    }

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

    .story-image-offset {
        transform: none;
    }

    .values-grid-irregular {
        flex-direction: column;
    }

    .value-pos-1,
    .value-pos-2,
    .value-pos-3,
    .value-pos-4 {
        transform: none;
    }

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

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

    .step-1, .step-2, .step-3, .step-4, .step-5 {
        transform: none;
    }

    .services-intro-offset {
        margin-left: 0;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .detail-2,
    .detail-3 {
        padding: 0;
    }

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

    .contact-image-diagonal {
        transform: none;
    }

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