/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #1a3d30;
}

ul {
    list-style: none;
}

/* Editorial Navigation */
.editorial-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f4f;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #666;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5f4f;
}

/* Editorial Content Container */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Editorial */
.hero-editorial {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Story Sections */
.story-section {
    margin: 3rem 0;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c2c2c;
}

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

.story-section.alt-bg {
    background-color: #f9f9f9;
    padding: 2.5rem 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

/* Inline CTA Section */
.inline-cta-section {
    margin: 3rem 0;
    text-align: center;
}

.cta-inline {
    background-color: #f0f7f4;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #2c5f4f;
}

.cta-inline p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-text {
    display: inline-block;
    color: #2c5f4f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2c5f4f;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    background-color: #2c5f4f;
    color: #fff;
}

/* Approach List */
.approach-list {
    margin: 2rem 0;
}

.approach-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 3px solid #2c5f4f;
}

.approach-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Services Pricing */
.services-pricing {
    margin: 3rem 0;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #2c5f4f;
    background-color: #f0f7f4;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2c5f4f;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.service-features {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    display: inline-block;
    background-color: #2c5f4f;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1a3d30;
    color: #fff;
}

/* Testimonials */
.testimonials-section {
    margin: 3rem 0;
}

.testimonials-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f4f;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Form Section */
.form-section {
    margin: 3rem 0;
    background-color: #f9f9f9;
    padding: 2.5rem 2rem;
    border-radius: 6px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: #2c5f4f;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Trust Section */
.trust-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0f7f4;
    border-radius: 6px;
}

.trust-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.trust-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.trust-list li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #2c5f4f;
    color: #fff;
    border-radius: 6px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn-final {
    display: inline-block;
    background-color: #fff;
    color: #2c5f4f;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background-color: #f0f7f4;
    color: #1a3d30;
}

/* Footer */
.editorial-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.footer-col a {
    color: #ccc;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px 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;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #1a3d30;
}

.btn-cookie.reject {
    background-color: #666;
    color: #fff;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: inline-block;
    background-color: #2c5f4f;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #1a3d30;
    box-shadow: 0 6px 16px rgba(44, 95, 79, 0.4);
    transform: translateY(-2px);
}

/* About Page Specific */
.team-member {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.values-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0f7f4;
    border-radius: 6px;
}

.values-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.value-item {
    margin: 2rem 0;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
}

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

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f4f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a3d30;
    color: #fff;
}

/* Services Page Specific */
.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-image img {
    width: 100%;
    border-radius: 6px;
}

.service-info {
    position: relative;
}

.badge-service {
    display: inline-block;
    background-color: #2c5f4f;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5f4f;
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-note {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-info h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-info ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.extras-section {
    margin: 4rem 0;
    padding: 2.5rem 2rem;
    background-color: #f9f9f9;
}

.extras-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.extras-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.extra-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.extra-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c5f4f;
}

.extra-item p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.extra-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c5f4f;
    margin-bottom: 0;
}

.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-final {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: #f0f7f4;
    border-radius: 6px;
}

.cta-final h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    display: inline-block;
    background-color: #2c5f4f;
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #1a3d30;
    color: #fff;
}

/* Contact Page Specific */
.contact-info-section {
    margin: 3rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.contact-method h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

.contact-method p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.8;
}

.pre-contact-faq {
    margin: 2rem 0;
}

.faq-compact {
    margin: 1.5rem 0;
}

.faq-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c5f4f;
}

.faq-compact p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.map-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    padding: 2rem;
    background-color: #e0e0e0;
    border-radius: 4px;
    text-align: center;
}

.map-placeholder p {
    margin-bottom: 1rem;
    color: #333;
}

.trust-indicators {
    margin: 3rem 0;
}

.trust-indicators h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.trust-list-compact {
    list-style: disc;
    margin-left: 1.5rem;
}

.trust-list-compact li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

/* Thanks Page Specific */
.thanks-page {
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f7f4;
    border-radius: 6px;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #2c5f4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.steps-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.steps-list p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.thanks-info {
    margin: 3rem 0;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.thanks-info > p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

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

.link-card {
    display: block;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: left;
}

.link-card:hover {
    background-color: #f0f7f4;
    border-color: #2c5f4f;
}

.link-card strong {
    display: block;
    font-size: 1.1rem;
    color: #2c5f4f;
    margin-bottom: 0.3rem;
}

.link-card span {
    font-size: 0.95rem;
    color: #666;
}

.reassurance {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff9e6;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.reassurance p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.reassurance p:last-child {
    margin-bottom: 0;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    background-color: #2c5f4f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #1a3d30;
    color: #fff;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
}

.legal-date {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.legal-section {
    margin: 2.5rem 0;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookie-table thead {
    background-color: #f0f7f4;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c5f4f;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

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

    .service-detail {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .service-image {
        flex: 1;
    }

    .service-info {
        flex: 1;
    }

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

    .extra-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-method {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .thanks-links {
        flex-direction: row;
    }

    .link-card {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-container {
        max-width: 800px;
    }

    .editorial-content {
        max-width: 720px;
    }

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

    .lead-text {
        font-size: 1.4rem;
    }

    .form-section {
        margin-left: 0;
        margin-right: 0;
        padding: 3rem;
    }

    .final-cta {
        margin-left: 0;
        margin-right: 0;
        padding: 4rem 3rem;
    }

    .story-section.alt-bg {
        margin-left: 0;
        margin-right: 0;
        padding: 3rem;
    }

    .contact-method {
        flex: 1 1 calc(33.333% - 1.67rem);
    }
}
