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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #6b6b6b;
    background-color: #f0f0ed;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav a:hover {
    color: #2d5016;
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
    width: 100%;
    padding: 80px 0;
}

.hero h1 {
    font-size: 52px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero p {
    font-size: 20px;
    color: #f0f0f0;
    max-width: 550px;
    line-height: 1.5;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-card h2 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 25px;
    font-weight: 600;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-grid {
    padding: 100px 0;
    background-color: #f5f5f2;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 600;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e0;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #3d6820;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
    padding: 12px 26px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.consultation-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.consultation-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f9f9f7;
    border-radius: 10px;
}

.consultation-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-align: center;
}

.consultation-card > p {
    text-align: center;
    margin-bottom: 40px;
    color: #5a5a5a;
    font-size: 16px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d0d0c8;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #3d6820;
}

.trust-section {
    padding: 100px 0;
    background-color: #fafaf8;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-content img {
    width: calc(50% - 30px);
    min-width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e5e5e0;
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.trust-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: #3a3a3a;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    font-weight: 500;
}

.btn-accept {
    background-color: #2d5016;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #6b6b6b;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.cookie-link {
    color: #ffffff;
    font-size: 13px;
    text-decoration: underline;
}

.page-hero {
    background-color: #2d5016;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    width: calc(45% - 25px);
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e5e5e0;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4a4a4a;
}

.about-content {
    padding: 60px 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-image {
    width: calc(45% - 30px);
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e5e5e0;
}

.process-section {
    background-color: #f5f5f2;
    padding: 60px 40px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.process-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5016;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.values-section > p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-size: 24px;
}

.about-final {
    background-color: #f9f9f7;
    padding: 50px;
    border-radius: 10px;
}

.about-final h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-final p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5016;
    font-weight: 600;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-note {
    background-color: #f5f5f2;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #2d5016;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map-card {
    flex: 1;
    min-width: 300px;
}

.contact-map-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e0;
    margin-bottom: 20px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.directions-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5016;
}

.directions-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
}

.consultation-enquiry {
    background-color: #f9f9f7;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.consultation-enquiry h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.consultation-enquiry p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c2c2c;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2d5016;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5016;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f9f9f7;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-details ul {
    list-style-position: inside;
}

.thanks-details ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-contact {
    margin-bottom: 40px;
}

.thanks-contact p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-updated {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5016;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #3d6820;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: #f5f5f2;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    border-bottom: 2px solid #d0d0c8;
}

.cookie-table td {
    padding: 15px;
    font-size: 15px;
    color: #4a4a4a;
    border-bottom: 1px solid #e5e5e0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-heading {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

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

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

    .about-image,
    .service-detail-image {
        width: 100%;
    }

    .process-cards {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .consultation-card {
        padding: 30px;
    }

    .thanks-card {
        padding: 40px 30px;
    }

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