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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

a {
    text-decoration: none;
    color: #2d5016;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a7a28;
}

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

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.main-navigation {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.nav-links a.nav-active {
    color: #4a7a28;
    border-bottom: 2px solid #4a7a28;
    padding-bottom: 2px;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    font-family: 'Arial', sans-serif;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-magazine {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    background-color: #d4d4c8;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-split {
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-content-split h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-tagline {
    font-size: 22px;
    font-style: italic;
    opacity: 0.95;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.intro-editorial {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.editorial-narrow {
    flex: 2;
    max-width: 700px;
}

.editorial-narrow h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.editorial-narrow p {
    margin-bottom: 25px;
    font-size: 19px;
}

.editorial-sidebar {
    flex: 1;
    min-width: 300px;
}

.sidebar-card {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e5e5e0;
}

.sidebar-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #e8e8e0;
}

.sidebar-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.sidebar-card p {
    font-size: 16px;
    line-height: 1.6;
}

.services-showcase {
    margin-bottom: 100px;
}

.section-header-wide {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-wide h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 400;
}

.subheading {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.services-magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large,
.service-card-medium,
.service-card-small,
.service-card-wide {
    background-color: #fff;
    border: 1px solid #e5e5e0;
    overflow: hidden;
}

.service-card-large {
    display: flex;
}

.service-card-large .service-image {
    flex: 1.2;
    background-color: #d4d4c8;
}

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

.service-card-large .service-content {
    flex: 1;
    padding: 50px;
}

.service-card-medium {
    display: flex;
    flex-direction: column;
}

.service-card-medium .service-image {
    height: 300px;
    background-color: #d4d4c8;
}

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

.service-card-medium .service-content {
    padding: 35px;
}

.service-card-wide {
    background-color: #f8f8f5;
}

.service-split {
    display: flex;
}

.service-split .service-image {
    flex: 1;
    background-color: #d4d4c8;
}

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

.service-split .service-content {
    flex: 1;
    padding: 50px;
}

.service-card-small .service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #2d5016;
    margin-top: 25px;
    margin-bottom: 25px;
}

.select-service {
    background-color: #2d5016;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.select-service:hover {
    background-color: #4a7a28;
}

.form-section-editorial {
    background-color: #f0f0e8;
    padding: 80px 40px;
    margin: 0 -40px 100px -40px;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.booking-form {
    background-color: #fff;
    padding: 50px;
    border: 1px solid #e5e5e0;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0c8;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

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

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

.submit-button {
    background-color: #2d5016;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
    font-family: 'Arial', sans-serif;
}

.submit-button:hover {
    background-color: #4a7a28;
}

.trust-editorial {
    margin-bottom: 100px;
}

.testimonial-magazine {
    margin-bottom: 100px;
}

.testimonial-layout {
    display: flex;
    gap: 40px;
}

.testimonial-large {
    flex: 2;
    background-color: #2d5016;
    color: #fff;
    padding: 60px;
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-small {
    flex: 1;
    background-color: #f8f8f5;
    padding: 40px;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    border: 1px solid #e5e5e0;
}

blockquote {
    border: none;
}

blockquote p {
    margin-bottom: 20px;
}

cite {
    display: block;
    font-style: normal;
    font-size: 16px;
    opacity: 0.8;
}

.why-different {
    margin-bottom: 100px;
}

.split-editorial {
    display: flex;
    gap: 60px;
    align-items: center;
}

.editorial-column {
    flex: 1;
}

.editorial-column h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
}

.editorial-column img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #d4d4c8;
}

.final-cta-magazine {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 60px;
    text-align: center;
    margin: 0 -40px 100px -40px;
}

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content-centered p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.cta-button-secondary:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.disclaimer-section {
    margin-bottom: 80px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff5e6;
    border-left: 4px solid #d4a76a;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 40px 30px;
}

.footer-magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-column a {
    color: #d0d0d0;
    font-size: 15px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 40px;
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.cookie-btn.accept {
    background-color: #2d5016;
    color: #fff;
}

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

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

.cookie-btn.reject:hover {
    background-color: #333;
}

.cookie-link {
    color: #fff;
    font-size: 13px;
    text-decoration: underline;
}

.about-page-magazine,
.services-page,
.contact-page,
.thanks-page,
.legal-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.about-hero,
.services-header,
.contact-header,
.thanks-content header {
    text-align: center;
    padding: 80px 40px;
    background-color: #f8f8f5;
    margin: 0 -40px 80px -40px;
}

.about-hero h1,
.services-header h1,
.contact-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-intro,
.services-intro,
.contact-intro {
    font-size: 22px;
    color: #666;
}

.about-story-editorial {
    margin-bottom: 100px;
}

.editorial-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.story-text p {
    margin-bottom: 25px;
    font-size: 18px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #d4d4c8;
}

.philosophy-section {
    margin-bottom: 100px;
}

.philosophy-layout {
    display: flex;
    gap: 40px;
}

.philosophy-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e5e5e0;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
}

.team-approach {
    margin-bottom: 100px;
}

.values-visual {
    margin-bottom: 100px;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
}

.value-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #d4d4c8;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
}

.growth-story {
    margin-bottom: 100px;
}

.editorial-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.growth-text {
    flex: 1.3;
}

.growth-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
}

.growth-text p {
    margin-bottom: 25px;
    font-size: 18px;
}

.growth-visual {
    flex: 1;
}

.stat-display {
    background-color: #2d5016;
    padding: 50px;
    color: #fff;
}

.stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.approach-detail {
    margin-bottom: 100px;
}

.cta-about {
    background-color: #f8f8f5;
    padding: 80px 60px;
    text-align: center;
    margin: 0 -40px;
}

.cta-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-centered p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.cta-button-primary:hover {
    background-color: #4a7a28;
}

.services-detailed {
    margin-bottom: 80px;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #e5e5e0;
    padding: 50px;
}

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

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

.service-detail-layout .service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #d4d4c8;
}

.service-detail-layout .service-detail-content {
    flex: 1.2;
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-summary {
    font-size: 19px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.service-detail {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.6;
}

.pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f8f5;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
}

.consultation-benefits,
.dietary-options {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.benefit-item,
.dietary-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f8f5;
}

.benefit-item h3,
.dietary-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-item p,
.dietary-item p {
    font-size: 16px;
    line-height: 1.6;
}

.dietary-item ul {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.8;
}

.services-cta {
    padding: 80px 40px;
    background-color: #f8f8f5;
    margin: 0 -40px;
}

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

.cta-box-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-box-centered p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #666;
}

.contact-content {
    margin-bottom: 80px;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

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

.contact-info-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-detail-block {
    margin-bottom: 45px;
}

.contact-detail-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2d5016;
}

.contact-value {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.service-areas {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
}

.contact-visual-section {
    flex: 1;
}

.contact-visual-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
    background-color: #d4d4c8;
}

.contact-note-box {
    background-color: #f8f8f5;
    padding: 35px;
    border: 1px solid #e5e5e0;
}

.contact-note-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-note-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-note-box p:last-child {
    margin-bottom: 0;
}

.faq-section {
    margin-bottom: 80px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e5e5e0;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2d5016;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-cta {
    background-color: #2d5016;
    color: #fff;
    padding: 80px 60px;
    text-align: center;
    margin: 0 -40px;
}

.cta-contact-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-contact-box p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 80px 40px;
}

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

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 400;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    color: #666;
}

.service-confirmation {
    background-color: #f8f8f5;
    padding: 30px;
    margin-bottom: 60px;
    border: 1px solid #e5e5e0;
}

.service-confirmation h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.selected-service-display {
    font-size: 22px;
    font-weight: 600;
    color: #2d5016;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 400;
}

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: left;
}

.step-item {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e5e5e0;
}

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

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.contact-reminder {
    font-size: 16px;
    color: #666;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

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

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #2d5016;
}

.legal-section h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section a {
    text-decoration: underline;
}

.cookie-table {
    overflow-x: auto;
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e5e5e0;
}

.cookie-table th {
    background-color: #f8f8f5;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-content-split h1 {
        font-size: 42px;
    }

    .intro-editorial,
    .split-editorial,
    .editorial-split,
    .editorial-split-reverse {
        flex-direction: column;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .service-card-large,
    .service-split {
        flex-direction: column;
    }

    .service-card-large .service-image,
    .service-split .service-image {
        height: 300px;
    }

    .services-magazine-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .service-card-large,
    .service-card-wide {
        grid-column: 1 / -1;
    }

    .philosophy-layout,
    .values-grid {
        flex-direction: column;
    }

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

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

    .consultation-benefits,
    .dietary-options {
        flex-direction: column;
    }

    .faq-item {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-content-split h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .magazine-layout {
        padding: 40px 20px;
    }

    .section-header-wide h2 {
        font-size: 36px;
    }

    .services-magazine-grid {
        grid-template-columns: 1fr;
    }

    .form-section-editorial {
        padding: 40px 20px;
    }

    .booking-form {
        padding: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

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