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

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

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

a:hover {
    color: #1a3624;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.btn-accept:hover {
    background-color: #1a3624;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.main-header {
    background-color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5a3d;
}

.ad-disclosure {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.8rem;
    color: #888888;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

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

.hero-magazine {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2d5a3d;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 4rem 2rem 3rem;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    max-width: 900px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.intro-columns {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.intro-main {
    flex: 2;
}

.intro-main h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.intro-main p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-box {
    background-color: #f0ede8;
    padding: 2rem;
    border-left: 4px solid #2d5a3d;
}

.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.info-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.visual-story {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    margin-top: 0;
    font-size: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.story-image {
    flex: 1;
    background-color: #e0ddd8;
}

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

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

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 0;
}

.routes-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.route-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f9f7f4;
    overflow: hidden;
}

.route-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0ddd8;
}

.route-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.route-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-inline {
    padding: 4rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h3 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5a3d;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #f0ede8;
    transform: translateY(-2px);
}

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

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

.story-column {
    flex: 1;
}

.story-column h3 {
    margin-top: 0;
    font-size: 2rem;
}

.story-column p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    text-align: justify;
}

.story-column img {
    width: 100%;
    height: auto;
    background-color: #e0ddd8;
}

.service-highlight {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.service-highlight h3 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.service-preview {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.preview-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-top: 3px solid #2d5a3d;
}

.preview-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.preview-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin: 2rem auto;
    display: block;
    text-align: center;
    max-width: 300px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1a3624;
    transform: translateY(-2px);
}

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

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

.testimonial {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #f9f7f4;
    border-left: 4px solid #2d5a3d;
    font-style: italic;
}

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

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666666;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.final-cta {
    padding: 5rem 2rem;
    background-color: #1a3624;
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #1a3624;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    cursor: pointer;
}

.btn-large:hover {
    background-color: #f0ede8;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #333333;
    border-radius: 4px;
}

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

.footer-disclaimer strong {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888888;
}

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

.page-hero {
    padding: 5rem 2rem 3rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-align: center;
}

.page-hero h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.services-grid {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

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

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-pricing .price-note {
    font-size: 0.9rem;
    color: #666666;
    margin-left: 0.5rem;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1a3624;
    transform: translateY(-2px);
}

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

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

.booking-container h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.booking-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.booking-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

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

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

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

.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background-color: #1a3624;
    transform: translateY(-2px);
}

.about-hero {
    padding: 5rem 2rem 3rem;
    background-color: #2d5a3d;
    color: #ffffff;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h2 {
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    font-style: italic;
}

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

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

.story-main-column {
    flex: 2;
}

.story-main-column h3 {
    margin-top: 0;
    font-size: 2.2rem;
}

.story-main-column p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-sidebar-image {
    flex: 1;
    background-color: #e0ddd8;
}

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

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

.values-section h3 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    margin-top: 0;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-top: 3px solid #2d5a3d;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

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

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

.approach-text {
    flex: 1.5;
}

.approach-text h3 {
    margin-top: 0;
    font-size: 2.2rem;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.approach-image {
    flex: 1;
    background-color: #e0ddd8;
}

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

.team-intro {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
    text-align: center;
}

.team-intro h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.team-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.partnerships h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    margin-top: 0;
}

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

.partnerships-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.partners-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.partners-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.partners-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

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

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

.impact-wrapper h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.impact-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.cta-about-content h3 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 2rem 3rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-align: center;
}

.contact-hero h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
}

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

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

.contact-main {
    flex: 2;
}

.contact-main h3 {
    margin-top: 0;
    font-size: 2.2rem;
}

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

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    color: #2a2a2a;
}

.email-note, .hours-note {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 0.5rem;
}

.contact-notice {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-left: 4px solid #2d5a3d;
}

.contact-notice h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-notice p {
    font-size: 1rem;
}

.contact-sidebar {
    flex: 1;
}

.info-card {
    background-color: #f9f7f4;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.location-visual {
    margin-bottom: 0;
    background-color: #e0ddd8;
}

.location-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thanks-page {
    background-color: #f9f7f4;
}

.thanks-content {
    padding: 5rem 2rem;
}

.thanks-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    text-align: center;
    border-radius: 4px;
}

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

.thanks-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.steps-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-reminder {
    padding-top: 2rem;
    border-top: 1px solid #e0ddd8;
}

.contact-reminder p {
    font-size: 0.95rem;
    color: #666666;
}

.related-info {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.info-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.related-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link-card {
    flex: 1 1 300px;
    max-width: 400px;
    background-color: #f9f7f4;
    padding: 2rem;
    border-top: 3px solid #2d5a3d;
    text-align: left;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-4px);
}

.link-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.link-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.legal-page {
    background-color: #ffffff;
}

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

.legal-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.last-updated {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .column-wrapper, .story-grid, .two-column-story, .story-layout, .approach-layout, .contact-layout {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-card:nth-child(even) {
        flex-direction: column !important;
    }

    .routes-layout, .service-preview, .values-grid {
        flex-direction: column;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    .booking-form {
        padding: 2rem;
    }
}