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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.header-main {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    z-index: 100;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

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

.nav-links a {
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.7rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #f9fafb;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #d4e2d8;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1f4429;
}

.philosophy-split {
    display: flex;
    align-items: stretch;
}

.philosophy-image {
    flex: 1;
    background-color: #c8d5cc;
}

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

.philosophy-content {
    flex: 1;
    padding: 5rem 5%;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

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

.service-card {
    display: flex;
    width: 100%;
    gap: 3rem;
    align-items: center;
}

.service-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1f4429;
}

.form-section {
    padding: 5rem 5%;
    background-color: #f9fafb;
}

.form-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.form-left img {
    border-radius: 8px;
    background-color: #d1d5db;
}

.form-right {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-split {
    display: flex;
    align-items: stretch;
}

.trust-content {
    flex: 1;
    padding: 5rem 5%;
    background-color: #f9fafb;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.trust-content blockquote {
    margin-bottom: 2.5rem;
}

.trust-content blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    color: #374151;
}

.trust-content cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7280;
}

.trust-image {
    flex: 1;
    background-color: #d4e2d8;
}

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

.footer-main {
    background-color: #1a1a1a;
    color: #e5e7eb;
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #9ca3af;
}

.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    color: #9ca3af;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #6b7280;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.btn-accept {
    padding: 0.7rem 1.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-reject {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #9ca3af;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.about-hero {
    display: flex;
    min-height: 70vh;
}

.about-hero-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
}

.about-hero-image {
    flex: 1;
    background-color: #d4e2d8;
}

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

.story-split {
    display: flex;
    padding: 5rem 5%;
}

.story-text {
    flex: 1;
    padding-right: 4rem;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.story-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 5%;
    background-color: #f9fafb;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.team-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.team-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.approach-section {
    padding: 5rem 5%;
    background-color: #f9fafb;
}

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.approach-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-about {
    padding: 5rem 5%;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.services-header {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f9fafb;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.services-list {
    padding: 3rem 5%;
}

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

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

.service-detail-left {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #1f4429;
}

.booking-cta {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f9fafb;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-cta p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #1f4429;
}

.contact-header {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f9fafb;
}

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

.contact-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.contact-content {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-card {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.email-display {
    font-weight: 600;
    color: #2d5f3f;
}

.small-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

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

.contact-image-section img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    background-color: #e5e7eb;
}

.contact-approach h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-approach p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.contact-map-placeholder {
    padding: 3rem 5%;
    background-color: #f9fafb;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.map-info p {
    color: #4a5568;
}

.contact-cta {
    padding: 5rem 5%;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.thanks-container {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 5rem 5%;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1.05rem;
    color: #2d5f3f;
    padding: 1rem;
    background-color: #f0f9f4;
    border-radius: 6px;
}

.thanks-next-steps {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.thanks-image {
    flex: 1;
    background-color: #d4e2d8;
}

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

.thanks-info {
    padding: 5rem 5%;
    background-color: #f9fafb;
}

.thanks-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.step-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.step-item p {
    color: #4a5568;
}

.legal-page {
    padding: 5rem 5%;
    background-color: #f9fafb;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

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

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4a5568;
}

.link-display {
    color: #2d5f3f;
}

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

.cookie-table th {
    background-color: #f9fafb;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .philosophy-split,
    .trust-split,
    .about-hero {
        flex-direction: column;
    }

    .service-row,
    .service-detail-card,
    .form-container,
    .story-split,
    .team-split,
    .approach-split,
    .contact-content,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-text h1,
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

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