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

:root {
    --primary-green: #2d5f3f;
    --accent-green: #4a8259;
    --light-green: #7ea888;
    --cream: #f8f6f1;
    --warm-white: #fefdfb;
    --dark-text: #1a1a1a;
    --mid-text: #4a4a4a;
    --light-text: #757575;
    --border-color: #e0ddd4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--warm-white);
}

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

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

.main-nav {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--mid-text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--cream);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--mid-text);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--accent-green);
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: background 0.3s;
}

.btn-primary-large:hover {
    background: var(--accent-green);
}

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

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

.split-intro {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
}

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

.split-text-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: white;
}

.split-text-right h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.split-text-right p {
    font-size: 1.15rem;
    color: var(--mid-text);
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.problem-highlight {
    background: var(--cream);
    padding: 6rem 2rem;
}

.problem-content {
    max-width: 1300px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.problem-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1.2;
}

.problem-text p {
    font-size: 1.2rem;
    color: var(--mid-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem-visual {
    flex: 0.8;
}

.problem-visual img {
    border-radius: 12px;
}

.services-showcase {
    padding: 7rem 2rem;
    background: white;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.25rem;
    color: var(--mid-text);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-details p {
    color: var(--mid-text);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: var(--primary-green);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-select-service:hover {
    background: var(--accent-green);
}

.trust-indicators {
    background: white;
    padding: 7rem 2rem;
}

.trust-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.trust-text {
    flex: 1.3;
}

.trust-text h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.principle {
    margin-bottom: 2.5rem;
}

.principle h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.principle p {
    font-size: 1.1rem;
    color: var(--mid-text);
    line-height: 1.7;
}

.trust-image {
    flex: 0.7;
}

.trust-image img {
    border-radius: 12px;
}

.testimonials-flow {
    background: var(--cream);
    padding: 7rem 2rem;
}

.testimonials-flow h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.testimonial-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 1.15rem;
    color: var(--mid-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-split-section {
    display: flex;
    min-height: 75vh;
    align-items: stretch;
}

.cta-image-side {
    flex: 0.9;
    overflow: hidden;
}

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

.cta-content-side {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--primary-green);
    color: white;
}

.cta-content-side h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-side p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-content-side .btn-primary-large {
    background: white;
    color: var(--primary-green);
    align-self: flex-start;
}

.cta-content-side .btn-primary-large:hover {
    background: var(--cream);
}

.booking-section {
    background: white;
    padding: 7rem 2rem;
}

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

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.6rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.booking-info p {
    font-size: 1.1rem;
    color: var(--mid-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-display {
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.selected-service-display p {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0;
}

.booking-form-container {
    flex: 1;
}

.booking-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.btn-submit {
    background: var(--primary-green);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--accent-green);
}

.final-reassurance {
    background: var(--cream);
    padding: 5rem 2rem;
}

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

.reassurance-content h2 {
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.reassurance-content p {
    font-size: 1.2rem;
    color: var(--mid-text);
    line-height: 1.7;
}

.main-footer {
    background: var(--primary-green);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    opacity: 0.85;
    margin-bottom: 0.6rem;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    background: var(--accent-green);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 999;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--accent-green);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-green);
}

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

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

.about-hero {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--primary-green);
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
}

.about-hero-image {
    flex: 1;
    overflow: hidden;
}

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

.about-story {
    padding: 7rem 2rem;
    background: white;
}

.story-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.15rem;
    color: var(--mid-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    border-radius: 12px;
}

.approach-section {
    padding: 7rem 2rem;
    background: var(--cream);
}

.approach-section h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.approach-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
}

.approach-item h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    font-size: 1.1rem;
    color: var(--mid-text);
    line-height: 1.7;
}

.team-highlight {
    padding: 7rem 2rem;
    background: white;
}

.team-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.team-content h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-content p {
    font-size: 1.2rem;
    color: var(--mid-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-image {
    max-width: 1400px;
    margin: 0 auto;
}

.team-image img {
    border-radius: 12px;
}

.values-section {
    padding: 7rem 2rem;
    background: var(--cream);
}

.values-section h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.value-card {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-size: 1.1rem;
    color: var(--mid-text);
    line-height: 1.7;
}

.cta-about {
    background: var(--primary-green);
    padding: 6rem 2rem;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-content .btn-primary-large {
    background: white;
    color: var(--primary-green);
}

.cta-content .btn-primary-large:hover {
    background: var(--cream);
}

.services-page-hero {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.services-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--cream);
}

.services-hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-hero-text p {
    font-size: 1.3rem;
    color: var(--mid-text);
}

.services-hero-image {
    flex: 1;
    overflow: hidden;
}

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

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--mid-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-includes li {
    font-size: 1.05rem;
    color: var(--mid-text);
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-timeline {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 2rem;
}

.services-cta {
    background: var(--primary-green);
    padding: 6rem 2rem;
}

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

.services-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.services-cta-content .btn-primary-large {
    background: white;
    color: var(--primary-green);
}

.services-cta-content .btn-primary-large:hover {
    background: var(--cream);
}

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

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.contact-split {
    display: flex;
    gap: 5rem;
}

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

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--mid-text);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--accent-green);
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-top: 0.5rem;
    font-style: italic;
}

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

.contact-image-side img {
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-cta-box h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-box p {
    font-size: 1.05rem;
    color: var(--mid-text);
    margin-bottom: 1.5rem;
}

.contact-faq {
    background: var(--cream);
    padding: 6rem 2rem;
}

.contact-faq h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.faq-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1.5rem);
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--mid-text);
    line-height: 1.7;
}

.thanks-hero {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.thanks-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--cream);
}

.thanks-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--mid-text);
    margin-bottom: 3rem;
}

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

.thanks-service-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-green);
}

.thanks-service-info h2 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.thanks-service-info p {
    font-size: 1.2rem;
    color: var(--accent-green);
    font-weight: 600;
    margin: 0;
}

.thanks-next-steps {
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

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

.steps-list li {
    font-size: 1.1rem;
    color: var(--mid-text);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
    counter-increment: step-counter;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-green);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.thanks-contact {
    font-size: 1.05rem;
    color: var(--mid-text);
}

.thanks-contact a {
    color: var(--accent-green);
    font-weight: 600;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
}

.thanks-image {
    flex: 0.7;
    overflow: hidden;
}

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

.thanks-reassurance {
    background: white;
    padding: 5rem 2rem;
}

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

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--mid-text);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: var(--mid-text);
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-content strong {
    color: var(--primary-green);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent-green);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--cream);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-green);
    color: white;
    font-weight: 600;
}

.cookie-table td {
    font-size: 0.95rem;
    color: var(--mid-text);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .about-hero,
    .services-page-hero,
    .cta-split-section,
    .thanks-hero {
        flex-direction: column;
    }

    .hero-content,
    .split-text-right,
    .about-hero-content,
    .services-hero-text,
    .cta-content-side,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-content h1,
    .about-hero-content h1,
    .services-hero-text h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .problem-split,
    .trust-split,
    .story-split,
    .booking-split,
    .contact-split {
        flex-direction: column;
        gap: 2.5rem;
    }

    .testimonial-split,
    .values-split {
        flex-direction: column;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .approach-grid,
    .faq-grid {
        gap: 2rem;
    }

    .approach-item,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .service-detail-content {
        padding: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .split-text-right h2,
    .problem-content h2,
    .services-header h2,
    .trust-text h2,
    .testimonials-flow h2,
    .story-text h2,
    .approach-section h2,
    .team-content h2,
    .values-section h2,
    .contact-faq h2 {
        font-size: 2rem;
    }

    .cta-content-side h2,
    .cta-about .cta-content h2,
    .services-cta-content h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .split-text-right,
    .cta-content-side {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p,
    .split-text-right p {
        font-size: 1.05rem;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .service-details,
    .service-detail-content,
    .testimonial-card,
    .value-card,
    .approach-item,
    .faq-item {
        padding: 1.5rem;
    }
}