* {
    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: #1a1a1a;
    background-color: #fefefe;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5c3f;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    display: block;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #f9f7f4;
}

.hero-content-offset {
    width: 45%;
    padding: 8rem 2rem 4rem 4rem;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-text-block {
    max-width: 540px;
}

.hero-text-block h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #444;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5c3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #1e4029;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 10%;
    width: 58%;
    height: 75%;
    background-color: #d4c8b8;
}

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

.intro-diagonal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    padding-top: 3rem;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-left p {
    margin-bottom: 1.2rem;
    color: #444;
    font-size: 1.05rem;
}

.intro-right-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
}

.stat-card {
    padding: 2rem;
    background-color: #f9f7f4;
    border-left: 4px solid #2d5c3f;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d5c3f;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.services-staggered {
    padding: 7rem 2rem;
    background-color: #f9f7f4;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 4rem;
    padding-left: 10%;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-left p {
    font-size: 1.1rem;
    color: #555;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-offset-1 {
    margin-left: 5%;
    width: 85%;
}

.card-offset-2 {
    margin-left: 15%;
    width: 80%;
}

.card-offset-3 {
    margin-left: 8%;
    width: 82%;
}

.card-offset-4 {
    margin-left: 12%;
    width: 78%;
}

.card-offset-5 {
    margin-left: 3%;
    width: 88%;
}

.service-image {
    flex: 1;
    min-height: 280px;
    background-color: #d4c8b8;
}

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

.service-info {
    flex: 1.2;
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2d5c3f;
    margin-bottom: 1.2rem;
}

.select-service {
    padding: 0.8rem 2rem;
    background-color: #2d5c3f;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.select-service:hover {
    background-color: #1e4029;
}

.cta-inline {
    text-align: center;
    margin-top: 5rem;
    padding: 2rem;
}

.cta-inline p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: transparent;
    color: #2d5c3f;
    border: 2px solid #2d5c3f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5c3f;
    color: #ffffff;
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 12%;
    position: relative;
    z-index: 10;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.appointment-form {
    background-color: #f9f7f4;
    padding: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #333;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d5c3f;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4029;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.form-note a {
    color: #2d5c3f;
}

.form-background-shape {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 400px;
    height: 500px;
    background-color: #f9f7f4;
    opacity: 0.4;
    transform: rotate(12deg);
}

.trust-overlap {
    padding: 5rem 2rem;
    background-color: #2d5c3f;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffffff;
}

.testimonial-offset-1 {
    margin-left: 0;
    width: 75%;
}

.testimonial-offset-2 {
    margin-left: 20%;
    width: 70%;
}

.testimonial-offset-3 {
    margin-left: 10%;
    width: 65%;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

.products-diagonal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.products-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.products-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.products-header p {
    color: #555;
    font-size: 1.05rem;
}

.products-grid-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.product-item {
    flex: 1;
    max-width: 350px;
}

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.2rem;
    background-color: #f9f7f4;
}

.product-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.product-item p {
    color: #555;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-block {
    flex: 1;
}

.footer-offset-1 {
    margin-top: 0;
}

.footer-offset-2 {
    margin-top: 1.5rem;
}

.footer-offset-3 {
    margin-top: 0.8rem;
}

.footer-offset-4 {
    margin-top: 2rem;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-block p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-block ul li {
    margin-bottom: 0.6rem;
}

.footer-block ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #2d5c3f;
}

.footer-disclaimer p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #2d5c3f;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

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

.page-hero-offset {
    padding: 6rem 2rem 4rem;
    background-color: #f9f7f4;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-split {
    flex: 1;
    padding-left: 8%;
}

.hero-text-split h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-split p {
    font-size: 1.2rem;
    color: #555;
}

.hero-image-split {
    flex: 1;
    background-color: #d4c8b8;
}

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

.story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-block {
    display: flex;
    gap: 3rem;
}

.story-left {
    width: 55%;
    padding-right: 3rem;
}

.story-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-left p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-right-offset {
    width: 45%;
    margin-top: 3rem;
    background-color: #d4c8b8;
}

.story-right-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-full {
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.story-full h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-full p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-team {
    flex-direction: column;
    background-color: #f9f7f4;
    padding: 3rem;
    margin-top: 2rem;
}

.story-team h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-team p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-asymmetric {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.values-asymmetric h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-offset-1 {
    margin-left: 5%;
    width: 75%;
}

.value-offset-2 {
    margin-left: 20%;
    width: 70%;
}

.value-offset-3 {
    margin-left: 12%;
    width: 73%;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.location-section-offset {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.location-content {
    max-width: 800px;
    margin-left: 15%;
}

.location-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-content p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.services-hero {
    padding: 5rem 2rem;
    background-color: #2d5c3f;
    color: #ffffff;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.card-position-1 {
    margin-left: 0;
}

.card-position-2 {
    margin-left: 5%;
    flex-direction: row-reverse;
}

.card-position-3 {
    margin-left: 3%;
}

.card-position-4 {
    margin-left: 8%;
    flex-direction: row-reverse;
}

.card-position-5 {
    margin-left: 2%;
}

.service-detail-image {
    flex: 1;
    background-color: #d4c8b8;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-detail-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.6rem;
    color: #555;
}

.service-price-block {
    margin: 2rem 0 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d5c3f;
}

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.cta-box-offset {
    max-width: 700px;
    margin-left: 15%;
    padding: 3rem;
    background-color: #2d5c3f;
    color: #ffffff;
}

.cta-box-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box-offset p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5c3f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.contact-hero-offset {
    padding: 5rem 2rem 3rem;
    background-color: #f9f7f4;
    max-width: 800px;
    margin: 0 auto 0 10%;
}

.contact-hero-offset h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero-offset p {
    font-size: 1.2rem;
    color: #555;
}

.contact-layout {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-info-block {
    max-width: 600px;
    margin-bottom: 3rem;
}

.info-offset-1 {
    margin-left: 8%;
}

.info-offset-2 {
    margin-left: 15%;
}

.info-offset-3 {
    margin-left: 5%;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-detail {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.contact-note {
    margin-top: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.contact-directions {
    max-width: 900px;
    margin: 3rem auto 3rem 12%;
    padding: 2.5rem;
    background-color: #f9f7f4;
}

.contact-directions h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-directions p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-image-offset {
    max-width: 700px;
    margin: 3rem 0 0 18%;
    background-color: #d4c8b8;
}

.contact-image-offset img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-cta-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.cta-contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-contact-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-contact-box p {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.05rem;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-left: 4px solid #2d5c3f;
}

.thanks-note {
    color: #666;
    margin-bottom: 2.5rem;
}

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

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #888;
}

@media (max-width: 1200px) {
    .hero-text-block h1 {
        font-size: 3rem;
    }

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

    .intro-right-offset {
        margin-top: 0;
    }

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

    .testimonial {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content-offset {
        width: 100%;
        padding: 3rem 1.5rem;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-block {
        margin-top: 0 !important;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .page-hero-offset {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .hero-text-split {
        padding-left: 0;
    }

    .hero-text-split h1 {
        font-size: 2.5rem;
    }

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

    .story-left,
    .story-right-offset {
        width: 100%;
        padding-right: 0;
        margin-top: 0;
    }

    .value-card {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .location-content {
        margin-left: 0;
    }

    .service-detail-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        gap: 2rem;
    }

    .cta-box-offset {
        margin-left: 0;
    }

    .contact-hero-offset {
        margin-left: 0;
    }

    .contact-info-block {
        margin-left: 0 !important;
    }

    .contact-directions {
        margin-left: 0;
    }

    .contact-image-offset {
        margin-left: 0;
    }

    .products-grid-asymmetric {
        flex-direction: column;
    }

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

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