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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8f2e;
    --accent-color: #8bc34a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: var(--shadow-lg);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

.btn-accept:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

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

.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    padding: 4rem;
    background: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

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

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-split,
.trust-split,
.about-split,
.values-split,
.contact-split,
.info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 4rem;
}

.split-right img,
.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.intro-split.reverse .split-right {
    order: -1;
}

.content-block {
    max-width: 550px;
}

.content-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.875rem 1.75rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.services-intro {
    max-width: 1200px;
    margin: 5rem auto 3rem;
    padding: 0 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.section-header-center p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 0;
}

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

.service-image {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.btn-select-service {
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-section {
    background: var(--primary-color);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

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

.testimonial {
    flex: 1;
    color: var(--bg-white);
}

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

.testimonial-author {
    font-weight: 600;
    font-style: normal;
}

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

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.form-container {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem;
    background: var(--bg-light);
}

.cta-left {
    flex: 2;
}

.cta-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cta-large {
    padding: 1.25rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

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

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

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

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-4px);
}

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

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    color: var(--bg-white);
}

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

.team-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member .role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
}

.credentials-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.credential-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
}

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

.credential-item p {
    color: var(--text-light);
}

.cta-section-about {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content-center p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detail {
    max-width: 1400px;
    margin: 3rem auto;
}

.service-detail-card {
    margin-bottom: 0;
}

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

.service-detail-split {
    display: flex;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    background: var(--bg-light);
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.service-detail-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.service-detail-content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.price-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.cta-service {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.service-faq {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    background: var(--primary-color);
    padding: 5rem 2rem;
    text-align: center;
}

.services-cta .cta-content-center {
    color: var(--bg-white);
}

.services-cta h2 {
    color: var(--bg-white);
}

.services-cta .cta-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.services-cta .cta-primary:hover {
    background: var(--bg-white);
}

.contact-split {
    max-width: 1400px;
    margin: 3rem auto 0;
}

.contact-left {
    flex: 1;
    padding: 4rem;
}

.contact-right {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info-block > p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.contact-detail p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.detail-note {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    font-style: italic;
    color: #666;
}

.contact-image-block img {
    min-height: 700px;
}

.visit-info {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.visit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.visit-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.visit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.visit-item ul {
    list-style: none;
    margin-top: 1rem;
}

.visit-item ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.visit-item ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.booking-reminder {
    background: var(--accent-color);
    padding: 4rem 2rem;
    text-align: center;
}

.reminder-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reminder-content p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-faq {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
}

.next-steps {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.info-left,
.info-right {
    flex: 1;
}

.info-left h2,
.info-right h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-left p,
.info-right p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.info-link {
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.urgent-email {
    font-size: 1.25rem;
    font-weight: 600;
}

.urgent-email a {
    color: var(--secondary-color);
}

.urgent-note {
    font-size: 0.9375rem;
    font-style: italic;
    color: #666;
}

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

.testimonial-block {
    padding: 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
}

.testimonial-block p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.return-home {
    text-align: center;
    margin: 5rem auto;
}

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

.legal-container {
    background: var(--bg-white);
    padding: 3rem;
    line-height: 1.8;
}

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

.effective-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.875rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-container p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
}

.legal-container ul li {
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

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

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-split,
    .values-split,
    .form-split,
    .contact-split,
    .info-split {
        flex-direction: column;
    }

    .intro-split.reverse .split-right,
    .about-split.reverse {
        order: 0;
    }

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

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

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

    .final-cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        justify-content: center;
        margin-top: 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}
