/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #7ba05b;
}

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

/* Split Screen Layouts */
.hero-split,
.intro-split,
.form-split,
.testimonials-split,
.info-split,
.about-split,
.values-split,
.contact-split,
.service-detail-split {
    display: flex;
    min-height: 500px;
    flex-wrap: wrap;
}

.split-left,
.split-right {
    flex: 1 1 50%;
    min-width: 320px;
}

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

.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

/* Hero Section */
.hero-split {
    min-height: 600px;
}

.hero-split .split-left {
    background-color: #f9f7f4;
}

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

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.hero-image,
.intro-image,
.testimonial-image,
.info-image,
.about-image,
.values-image,
.service-detail-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #7ba05b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #6a8f4f;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: #e5e5e5;
    color: #2c3e50;
    margin-left: 1rem;
}

.cta-button.secondary:hover {
    background-color: #d5d5d5;
}

/* Intro Section */
.intro-split {
    background-color: #ffffff;
}

.intro-content {
    max-width: 500px;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Services Section */
.services-highlight {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7ba05b;
    margin-bottom: 1.2rem;
}

.service-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #7ba05b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #6a8f4f;
}

/* Form Section */
.form-split {
    min-height: 600px;
}

.form-split .split-left {
    background-color: #7ba05b;
    color: #ffffff;
}

.form-intro {
    max-width: 450px;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    font-size: 1.05rem;
    padding-left: 0.5rem;
}

.booking-form {
    max-width: 500px;
    width: 100%;
}

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

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

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

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

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

.submit-button:hover {
    background-color: #6a8f4f;
}

/* Testimonials Section */
.testimonials-split {
    min-height: 550px;
}

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

.testimonials-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.testimonial-item p {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
}

/* Info Section */
.info-split {
    background-color: #f9f7f4;
}

.info-content {
    max-width: 500px;
}

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.text-link {
    color: #7ba05b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: #6a8f4f;
    text-decoration: underline;
}

/* Footer Styles */
.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1 1 200px;
}

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

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

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

.footer-section a {
    color: #d5d5d5;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #d5d5d5;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.references {
    font-size: 0.85rem;
}

.references a {
    color: #7ba05b;
}

.references a:hover {
    color: #9bc075;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 200;
    display: none;
}

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

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

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

.cookie-content a {
    color: #7ba05b;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #7ba05b;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6a8f4f;
}

.cookie-btn.reject {
    background-color: #e5e5e5;
    color: #2c3e50;
}

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

/* Page Hero */
.page-hero {
    height: 300px;
    background: linear-gradient(135deg, #7ba05b 0%, #6a8f4f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.philosophy-section,
.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.philosophy-content,
.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2,
.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7ba05b;
    margin-bottom: 0.5rem;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 2rem;
    background-color: #7ba05b;
    text-align: center;
    color: #ffffff;
}

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

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

/* Services Page Styles */
.services-intro {
    padding: 3rem 2rem;
    background-color: #f9f7f4;
    text-align: center;
}

.intro-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #666;
}

.service-detail-split {
    min-height: 500px;
}

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

.service-detail-content {
    max-width: 550px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #7ba05b;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #666;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7ba05b;
    font-weight: 700;
    font-size: 1.5rem;
}

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

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

.packages-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.packages-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.package-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-info {
    max-width: 500px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

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

.contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-note,
.contact-faq {
    margin-top: 2.5rem;
}

.contact-note h3,
.contact-faq h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-note ul {
    list-style: none;
    padding-left: 0;
}

.contact-note ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #666;
}

.contact-note ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7ba05b;
    font-weight: 700;
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.location-section {
    padding: 4rem 2rem;
    background-color: #f9f7f4;
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #7ba05b;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 0.8rem;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7ba05b;
    margin-bottom: 1rem;
}

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

.step-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

.thanks-tips h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-tips ul {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.thanks-tips ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #666;
}

.thanks-tips ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7ba05b;
    font-weight: 700;
    font-size: 1.2rem;
}

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

/* Legal Pages Styles */
.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

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

.legal-content li {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #7ba05b;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6a8f4f;
}

.legal-contact {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.legal-contact p {
    margin: 0;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookie-table th {
    background-color: #f9f7f4;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

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

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

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

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

    .split-left,
    .split-right {
        flex: 1 1 100%;
        padding: 2rem 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

    .cookie-btn {
        width: 100%;
    }

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

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

    .cta-button.secondary {
        margin-left: 0;
    }
}