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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a3f;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

.nav-menu a:hover {
    color: #2c7a3f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    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-color: #2c7a3f;
    color: #ffffff;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c7a3f;
    color: #ffffff;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #d4e8d9;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2c7a3f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.intro-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.content-wide p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d6d7e;
}

.services-alternating {
    background-color: #f8f9fa;
}

.service-item {
    display: flex;
    min-height: 450px;
}

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

.service-image {
    flex: 1;
    background-color: #d4e8d9;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c7a3f;
}

.service-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c7a3f;
    margin: 1rem 0;
}

.select-service {
    padding: 0.9rem 1.8rem;
    background-color: #2c7a3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #236330;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 63, 0.3);
}

.booking-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.selected-service {
    background-color: #d4e8d9;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    color: #2c7a3f;
}

.booking-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: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c7a3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #236330;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 63, 0.3);
}

.trust-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c7a3f;
    border-radius: 4px;
}

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

.author {
    display: block;
    font-weight: 600;
    color: #2c7a3f;
    font-style: normal;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef5e7;
    border-top: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5d4037;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

.page-header {
    background-color: #2c7a3f;
    color: #ffffff;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.about-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c7a3f;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5d6d7e;
}

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

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

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #2c7a3f;
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
}

.team-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c7a3f;
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5d6d7e;
}

.cta-bottom {
    max-width: 700px;
    margin: 4rem auto;
    text-align: center;
}

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

.cta-bottom p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5d6d7e;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-image {
    flex: 0 0 400px;
    background-color: #d4e8d9;
    overflow: hidden;
}

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

.card-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c7a3f;
}

.card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #5d6d7e;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5d6d7e;
}

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

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

.btn-select {
    padding: 1rem 2rem;
    background-color: #2c7a3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-block;
}

.btn-select:hover {
    background-color: #236330;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 63, 0.3);
}

.extra-info {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #2c3e50;
}

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

.info-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-main {
    flex: 1;
    min-width: 320px;
}

.contact-info-main h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c7a3f;
}

.contact-info-main h2:first-child {
    margin-top: 0;
}

.address-line {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: #5d6d7e;
}

.email-display {
    font-size: 1.1rem;
    color: #2c7a3f;
    font-weight: 600;
}

.hours-list {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #5d6d7e;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #5d6d7e;
}

.contact-note a {
    color: #2c7a3f;
    font-weight: 600;
}

.location-info {
    flex: 1;
    min-width: 320px;
}

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

.travel-section {
    margin-bottom: 2rem;
}

.travel-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c7a3f;
}

.travel-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2c7a3f;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5d6d7e;
    margin-bottom: 3rem;
}

.confirmation-info {
    text-align: left;
    margin-bottom: 3rem;
}

.confirmation-info h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c7a3f;
    border-radius: 4px;
}

.step strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c7a3f;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5d6d7e;
}

.next-steps {
    text-align: center;
}

.next-steps p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #5d6d7e;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c7a3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #236330;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 63, 0.3);
}

.legal-content {
    padding: 3rem 2rem;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c7a3f;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5d6d7e;
}

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

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    color: #5d6d7e;
}

.legal-container a {
    color: #2c7a3f;
    font-weight: 600;
    text-decoration: none;
}

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

.legal-container em {
    display: block;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #95a5a6;
}

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

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

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

.cookie-table td {
    color: #5d6d7e;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .service-item,
    .about-split {
        flex-direction: column;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .hero-text,
    .service-text,
    .about-text {
        padding: 2rem;
    }

    .card-image {
        flex: 0 0 250px;
    }

    .service-card {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

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

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