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

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2c;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f7f4;
    --bg-dark: #2a2a2a;
    --border-color: #d4d1c6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.5rem 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

.hero-text {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    min-height: 400px;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    background-color: #5a9238;
}

.intro-offset {
    padding: 5rem 2rem;
    background-color: var(--text-light);
}

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

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

.offset-text p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.offset-visual img {
    width: 100%;
    object-fit: cover;
}

.philosophy-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.philosophy-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.philosophy-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-underline {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.link-underline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.services-preview {
    padding: 6rem 2rem;
    background-color: var(--text-light);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-header p {
    font-size: 1.125rem;
    color: #666;
}

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

.service-card {
    background-color: var(--bg-light);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

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

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

.duration {
    color: #777;
    font-size: 0.9rem;
}

.btn-select {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

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

.booking-form {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-align: center;
}

.selected-service-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #9d7f54;
}

.why-choose {
    padding: 6rem 2rem;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

.benefits-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.benefit-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    padding: 2.5rem;
    background-color: var(--text-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
}

.cta-sticky-trigger {
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-col a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.125rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.page-header {
    padding: 5rem 2rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.25rem;
}

.services-detail {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    background-color: var(--text-light);
    overflow: hidden;
}

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

.detail-image {
    height: 350px;
    overflow: hidden;
}

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

.detail-info {
    padding: 3rem 2rem;
}

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

.service-lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.detail-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.meta-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.meta-duration {
    color: #777;
}

.service-cta {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

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

.about-hero {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
}

.about-story {
    padding: 6rem 2rem;
    background-color: var(--text-light);
}

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

.story-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.philosophy {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.philosophy-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background-color: var(--text-light);
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.125rem;
    color: #666;
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
}

.member-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.member-image img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-info p {
    line-height: 1.7;
}

.values-section {
    padding: 6rem 2rem;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.value-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.location-section {
    padding: 6rem 2rem;
    background-color: var(--text-light);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.contact-header {
    padding: 5rem 2rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.25rem;
}

.contact-info-section {
    padding: 6rem 2rem;
    background-color: var(--text-light);
}

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

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
}

.info-block p {
    line-height: 1.8;
    font-size: 1.0625rem;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map img {
    width: 100%;
    object-fit: cover;
}

.directions-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.directions-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.direction-item {
    padding: 2rem;
    background-color: var(--text-light);
}

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

.direction-item p {
    line-height: 1.8;
}

.faq-contact {
    padding: 5rem 2rem;
    background-color: var(--text-light);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cta-contact {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.confirmation-details {
    background-color: var(--text-light);
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.confirmation-details p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.selected-service-confirm {
    padding: 1rem;
    background-color: var(--bg-light);
    margin-bottom: 1rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.step-item {
    background-color: var(--text-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.step-item p {
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.legal-content {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 3rem 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.legal-container p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        border-bottom: none;
    }

    .nav-menu li {
        padding: 0 1.5rem;
    }

    .hero-split {
        flex-direction: row;
        min-height: 80vh;
    }

    .hero-text,
    .hero-image {
        flex: 1;
    }

    .hero-text {
        padding: 6rem 4rem;
    }

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

    .offset-container {
        flex-direction: row;
        align-items: center;
    }

    .offset-text {
        flex: 1;
    }

    .offset-visual {
        flex: 1;
    }

    .philosophy-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-image {
        flex: 1;
    }

    .philosophy-text {
        flex: 1;
        padding-left: 3rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .benefits-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .testimonial-wrapper {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

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

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

    .detail-image,
    .detail-info {
        flex: 1;
    }

    .detail-image {
        height: auto;
    }

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .story-image {
        flex: 1;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .team-member {
        flex-direction: row;
        align-items: center;
    }

    .member-image {
        flex-shrink: 0;
    }

    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .location-content {
        flex-direction: row;
        align-items: center;
    }

    .location-text,
    .location-image {
        flex: 1;
    }

    .contact-split {
        flex-direction: row;
    }

    .contact-details,
    .contact-map {
        flex: 1;
    }

    .directions-grid {
        flex-direction: row;
    }

    .direction-item {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .legal-container {
        padding: 4rem 4rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }
}
