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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #98c13d;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    min-height: 600px;
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-submit:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    padding: 2rem;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-text {
    padding: 2rem 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.services-showcase {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card.split {
    flex-direction: row;
}

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

.service-visual,
.service-info {
    flex: 1;
}

.service-visual {
    min-height: 300px;
}

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

.service-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: auto;
}

.trust-builder {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    background: #ffffff;
}

.trust-builder.split {
    flex-direction: row;
}

.trust-content,
.trust-visual {
    flex: 1;
}

.trust-content {
    padding: 2rem 4rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.trust-visual {
    padding: 2rem;
}

.trust-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonials-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

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

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

.testimonial {
    flex: 1;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.author {
    display: block;
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
}

.booking-section {
    display: flex;
    align-items: stretch;
    background: var(--light-bg);
}

.booking-section.reverse {
    flex-direction: row-reverse;
}

.booking-image,
.booking-form-wrapper {
    flex: 1;
}

.booking-image {
    min-height: 600px;
}

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

.booking-form-wrapper {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-form-wrapper > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.final-cta {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul a {
    color: #bbb;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.page-hero {
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    min-height: 60vh;
}

.page-hero.split {
    flex-direction: row;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.story-split.reverse {
    flex-direction: row-reverse;
}

.story-image,
.story-text {
    flex: 1;
}

.story-image {
    padding: 2rem;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-text {
    padding: 2rem 4rem;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #555;
}

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

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

.value-card {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.value-card.reverse {
    flex-direction: row-reverse;
}

.value-content,
.value-visual {
    flex: 1;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.value-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.team-text,
.team-image {
    flex: 1;
}

.team-text {
    padding: 2rem 4rem;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.team-image {
    padding: 2rem;
}

.team-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.commitment-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.commitment-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.commitment-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.cta-about,
.cta-services {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-about h2,
.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p,
.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-detail {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background: var(--light-bg);
}

.service-image,
.service-content {
    flex: 1;
}

.service-image {
    padding: 2rem;
}

.service-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-content {
    padding: 2rem 4rem;
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.price-tag {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

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

.service-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.service-faq {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-info-section {
    display: flex;
    align-items: stretch;
    padding: 4rem 2rem;
}

.contact-info-section.reverse {
    flex-direction: row-reverse;
}

.contact-image,
.contact-details {
    flex: 1;
}

.contact-image {
    padding: 2rem;
}

.contact-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
}

.contact-details {
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.detail-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.service-areas {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.areas-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.areas-text,
.areas-visual {
    flex: 1;
}

.areas-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.areas-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-expectations {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-expectations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.expectation-card {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.expectation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expectation-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-cta {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

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

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

.thanks-hero {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
}

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

.thanks-content > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-selected {
    font-size: 1.2rem;
    color: var(--text-dark);
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.thanks-info {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.info-text,
.info-image {
    flex: 1;
}

.info-text {
    padding: 2rem 4rem;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.info-image {
    padding: 2rem;
}

.info-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: #555;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie.accept:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-cookie.reject:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .intro-text h2,
    .trust-content h2,
    .story-text h2,
    .team-text h2,
    .service-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .trust-builder,
    .booking-section,
    .page-hero,
    .story-split,
    .team-split,
    .service-detail,
    .contact-info-section,
    .areas-content,
    .thanks-info {
        flex-direction: column;
    }

    .intro-split.reverse,
    .booking-section.reverse,
    .story-split.reverse,
    .contact-info-section.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-text,
    .intro-text,
    .trust-content,
    .story-text,
    .team-text,
    .service-content,
    .contact-details,
    .info-text,
    .booking-form-wrapper {
        padding: 2rem;
    }

    .hero-image {
        min-height: 400px;
    }

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

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .intro-text h2,
    .trust-content h2,
    .story-text h2,
    .team-text h2,
    .service-content h2 {
        font-size: 1.8rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .thanks-content h1 {
        font-size: 2rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }
}
