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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8fbc8f;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.nav-asymmetric {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-block .brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 4rem;
    background-color: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image-float {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 55%;
    height: 75%;
    z-index: 1;
    background-color: var(--secondary-color);
}

.hero-image-float img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.intro-right-visual {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.intro-right-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.services-asymmetric {
    background-color: var(--bg-light);
    padding: 7rem 2rem;
    position: relative;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: left;
    padding-left: 5rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(50% - 1.25rem);
    min-width: 320px;
}

.service-card.offset-top {
    margin-top: -2rem;
}

.service-card.offset-right {
    margin-right: -1.5rem;
}

.service-card.offset-left {
    margin-left: -1.5rem;
}

.service-card.offset-bottom {
    margin-bottom: -2rem;
}

.service-card.offset-top-right {
    margin-top: -1.5rem;
    margin-right: -1rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

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

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.booking-form-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-container-asymmetric {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 3rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.1rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefits-stacked {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.benefit-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.benefit-block.left-heavy .benefit-content {
    flex: 1.5;
    padding-right: 2rem;
}

.benefit-block.left-heavy .benefit-visual {
    flex: 1;
}

.benefit-block.right-heavy .benefit-visual {
    flex: 1.5;
}

.benefit-block.right-heavy .benefit-content {
    flex: 1;
    padding-left: 2rem;
}

.benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.benefit-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.cta-floating {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    text-align: center;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-floating::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-header-offset {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 2rem 0 6rem;
}

.page-header-offset h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header-offset p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content-left {
    flex: 1;
    padding-right: 2rem;
}

.story-content-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-image-right {
    flex: 1;
}

.story-image-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.values-irregular {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
    margin: 6rem 0;
}

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

.values-header h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: calc(50% - 1rem);
    min-width: 300px;
    transition: all 0.3s ease;
}

.value-card.offset-position-1 {
    margin-top: -1.5rem;
}

.value-card.offset-position-2 {
    margin-top: 1.5rem;
}

.value-card.offset-position-3 {
    margin-top: -1rem;
}

.value-card.offset-position-4 {
    margin-top: 2rem;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-visual-left {
    flex: 1;
}

.approach-visual-left img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.approach-content-right {
    flex: 1;
    padding-left: 2rem;
}

.approach-content-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-inline-about {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cta-inline-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-inline-about p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-detail-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.cta-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-info-box {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.services-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-info-box p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding-right: 2rem;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.contact-note p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.directions-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.directions-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.directions-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.thanks-next-steps ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

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

    .hero-image-float {
        width: 50%;
        height: 70%;
    }

    .intro-offset,
    .about-story,
    .approach-section,
    .contact-section,
    .thanks-section {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .hero-text-block {
        margin-left: 0;
    }

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

    .hero-image-float {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 2rem;
    }

    .intro-left {
        padding-left: 0;
    }

    .services-header-offset {
        padding-left: 0;
        text-align: center;
    }

    .page-header-offset {
        padding-left: 2rem;
    }

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

    .benefit-block.left-heavy .benefit-content,
    .benefit-block.right-heavy .benefit-content {
        padding: 0;
    }

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

    .value-card {
        width: 100%;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}