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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e1e4e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
}

.ad-disclosure {
    font-size: 11px;
    color: #6c757d;
    font-style: italic;
    padding: 4px 10px;
    background-color: #e9ecef;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 28px;
}

.nav-main a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-main a:hover {
    color: #1a1a1a;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.92;
}

.hero-image {
    flex: 1;
    background-color: #d4d8dc;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #6f5a42;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border: 2px solid #2c3e50;
    cursor: pointer;
}

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.split-content {
    flex: 1;
    padding: 60px 50px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

blockquote {
    border-left: 4px solid #8b7355;
    padding-left: 24px;
    margin: 28px 0;
    font-style: italic;
}

blockquote p {
    font-size: 17px;
    margin-bottom: 12px;
}

cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    font-weight: 400;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h4 {
    font-size: 20px;
    padding: 20px 20px 12px 20px;
    font-weight: 500;
}

.service-card p {
    padding: 0 20px 12px 20px;
    font-size: 15px;
    color: #495057;
}

.price {
    padding: 0 20px 16px 20px;
    font-size: 24px;
    font-weight: 600;
    color: #8b7355;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 400;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #6c757d;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.btn-submit:hover {
    background-color: #6f5a42;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f1f3f5;
}

.disclaimer {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.7;
    font-style: italic;
    padding: 20px;
    background-color: #ffffff;
    border-left: 3px solid #8b7355;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer-columns {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-cookie.accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

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

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

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

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

.content-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 400;
}

.content-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 400;
}

.values-grid {
    display: flex;
    gap: 32px;
}

.value-card {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 6px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.cta-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.92;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    padding: 48px 40px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
}

.price-large {
    font-size: 32px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 400;
}

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

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.directions-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.directions-section p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.enquiry-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.enquiry-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 400;
}

.faq-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

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

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
}

.thanks-section > div > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #495057;
}

.confirmation-box {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.confirmation-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.confirmation-box p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.confirmation-box ul {
    margin-left: 24px;
    margin-top: 16px;
}

.confirmation-box li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.service-reference {
    text-align: center;
    padding: 20px;
    background-color: #e9f5ff;
    border-radius: 4px;
    margin-bottom: 32px;
}

.service-reference p {
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.next-steps {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.next-steps p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.next-steps ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.next-steps li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #8b7355;
    text-decoration: underline;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e9ecef;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 500;
}

.cookies-table td {
    font-size: 15px;
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 16px;
    }

    .nav-main {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-split,
    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

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

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

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

    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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