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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 29px;
    z-index: 998;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background-color: #f5f1ed;
}

.hero-content-left {
    width: 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-image-offset {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: #8b4513;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #6d3510;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.intro-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 5%;
    position: relative;
    background-color: #fff;
}

.intro-block-small {
    width: 35%;
    padding-right: 40px;
}

.intro-block-small h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block-small p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.intro-image-overlap {
    width: 30%;
    margin-left: -5%;
    margin-top: 40px;
    z-index: 2;
    background-color: #e8e3dd;
}

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

.intro-block-wide {
    width: 40%;
    padding-left: 50px;
    padding-top: 20px;
}

.intro-block-wide p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-creative {
    padding: 100px 5%;
    background-color: #fafafa;
}

.services-header-offset {
    margin-left: 15%;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-large {
    width: calc(45% - 15px);
}

.card-offset-top {
    width: calc(50% - 15px);
    margin-top: -40px;
}

.card-small {
    width: calc(35% - 15px);
}

.card-wide {
    width: calc(60% - 15px);
}

.card-medium {
    width: calc(40% - 15px);
    margin-top: -60px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e3dd;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 20px;
}

.service-select {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #8b4513;
    transform: translateY(-2px);
}

.form-section-diagonal {
    display: flex;
    padding: 100px 5%;
    position: relative;
    background-color: #f5f1ed;
    min-height: 600px;
}

.form-container {
    width: 50%;
    padding-right: 60px;
    z-index: 2;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
}

.service-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    background-color: #8b4513;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background-color: #6d3510;
    transform: translateY(-2px);
}

.form-image-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    z-index: 1;
}

.form-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #e8e3dd;
}

.trust-asymmetric {
    display: flex;
    padding: 100px 5%;
    background-color: #fff;
    gap: 60px;
}

.trust-content-irregular {
    width: 60%;
}

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

.trust-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    background-color: #f5f1ed;
    padding: 30px;
    border-radius: 6px;
}

.trust-item-offset {
    margin-left: 60px;
}

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

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.trust-image-side {
    width: 40%;
    margin-top: 60px;
    background-color: #e8e3dd;
}

.trust-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.footer-irregular {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 5% 30px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-brand {
    width: 30%;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 8px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #8b4513;
}

.footer-disclaimer {
    background-color: #252525;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #8b4513;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #6d3510;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-hero-minimal {
    padding: 120px 5% 80px;
    background-color: #f5f1ed;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.page-hero-minimal p {
    font-size: 18px;
    color: #666;
}

.about-story-offset {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #fff;
}

.story-image-left {
    width: 40%;
    background-color: #e8e3dd;
}

.story-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.story-content-right {
    width: 60%;
    padding-left: 40px;
}

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

.story-content-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.team-irregular {
    padding: 80px 5%;
    background-color: #fafafa;
}

.team-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.team-header-center h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-block {
    width: calc(45% - 20px);
    background-color: #fff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-block-offset {
    margin-top: -40px;
}

.team-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-image-overlap {
    width: calc(55% - 20px);
    margin-top: 30px;
    background-color: #e8e3dd;
}

.team-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.philosophy-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #fff;
}

.philosophy-content {
    width: 60%;
}

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

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.philosophy-item {
    background-color: #f5f1ed;
    padding: 25px;
    border-radius: 6px;
}

.philosophy-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.philosophy-image {
    width: 40%;
    background-color: #e8e3dd;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.values-centered {
    padding: 80px 5%;
    background-color: #fafafa;
    text-align: center;
}

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

.values-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: calc(33.33% - 20px);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-detail-irregular {
    padding: 80px 5%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.card-overlap-left {
    padding-left: 5%;
}

.card-overlap-right {
    padding-right: 5%;
    flex-direction: row-reverse;
}

.card-full-width {
    width: 100%;
    flex-direction: column;
}

.service-detail-image {
    width: 45%;
    background-color: #e8e3dd;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.service-detail-content {
    width: 55%;
}

.card-full-width .service-detail-content {
    width: 100%;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.service-detail-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #8b4513;
    margin: 25px 0;
}

.additional-services-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.additional-service {
    background-color: #f5f1ed;
    padding: 30px;
    border-radius: 6px;
    width: calc(33.33% - 20px);
}

.additional-service h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-service p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.price-tag {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #8b4513;
}

.contact-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #fff;
    position: relative;
}

.contact-info-offset {
    width: 50%;
    z-index: 2;
}

.contact-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 5px;
}

.contact-note {
    font-style: italic;
    color: #8b4513;
    margin-top: 10px;
}

.contact-image-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    z-index: 1;
    background-color: #e8e3dd;
}

.contact-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-process {
    padding: 80px 5%;
    background-color: #fafafa;
}

.contact-process h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

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

.process-step {
    width: calc(50% - 20px);
    background-color: #fff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-step-offset {
    margin-top: -30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #8b4513;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.faq-section {
    padding: 80px 5%;
    background-color: #fff;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

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

.faq-item {
    width: calc(50% - 15px);
    background-color: #f5f1ed;
    padding: 30px;
    border-radius: 6px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-hero {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: #f5f1ed;
    min-height: 70vh;
}

.thanks-content {
    width: 60%;
}

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

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.service-name-display {
    font-size: 20px;
    font-weight: 700;
    color: #8b4513;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.next-step {
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.next-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #8b4513;
    color: #fff;
}

.btn-primary:hover {
    background-color: #6d3510;
}

.btn-secondary {
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #fff;
}

.thanks-image {
    width: 40%;
    background-color: #e8e3dd;
}

.thanks-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.legal-page {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-bottom: 15px;
    margin-left: 25px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-page a {
    color: #8b4513;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6d3510;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-content-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .hero-image-offset {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

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

    .intro-block-small,
    .intro-image-overlap,
    .intro-block-wide {
        width: 100%;
        padding: 0;
        margin: 0 0 30px 0;
    }

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

    .service-card,
    .card-large,
    .card-offset-top,
    .card-small,
    .card-wide,
    .card-medium {
        width: 100%;
        margin-top: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container {
        width: 100%;
        padding-right: 0;
    }

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

    .trust-asymmetric,
    .philosophy-split,
    .contact-asymmetric,
    .about-story-offset,
    .thanks-hero {
        flex-direction: column;
    }

    .trust-content-irregular,
    .trust-image-side,
    .philosophy-content,
    .philosophy-image,
    .contact-info-offset,
    .story-image-left,
    .story-content-right,
    .thanks-content,
    .thanks-image {
        width: 100%;
        padding: 0;
        margin: 0;
    }

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

    .trust-item-offset {
        margin-left: 0;
    }

    .values-grid,
    .additional-services-grid,
    .process-steps-irregular,
    .faq-grid {
        flex-direction: column;
    }

    .value-card,
    .additional-service,
    .process-step,
    .faq-item {
        width: 100%;
        margin-top: 0;
    }

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

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

    .card-overlap-left,
    .card-overlap-right {
        padding: 0;
    }

    .team-content-asymmetric {
        flex-direction: column;
    }

    .team-block,
    .team-image-overlap {
        width: 100%;
        margin-top: 0;
    }

    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

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

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

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        width: calc(50% - 15px);
    }

    .footer-col-brand {
        width: 100%;
    }
}