* {
    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: #2c3e50;
    background: #ffffff;
}

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

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 3px;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    background: #e0e0e0;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #2980b9;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-visual {
    flex: 1;
    background: #d0d0d0;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-grid {
    padding: 80px 30px;
    background: #ffffff;
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px;
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 0 20px;
    margin-bottom: 20px;
}

.service-card .select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 20px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-card .select-service:hover {
    background: #2980b9;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.form-visual {
    flex: 1;
    background: #d5d5d5;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 60px 50px;
    background: #f8f9fa;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.btn-submit {
    padding: 15px 35px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    background: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 60px 50px;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.trust-visual {
    flex: 1;
    background: #d8d8d8;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-full {
    padding: 80px 30px;
    background: #f8f9fa;
}

.approach-full h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-item {
    flex: 0 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    color: #666;
    font-size: 16px;
}

.cta-centered {
    text-align: center;
    padding: 80px 30px;
    background: #ffffff;
}

.cta-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    font-style: italic;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 14px;
}

.page-hero {
    background: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 20px;
    color: #666;
}

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.story-content {
    flex: 1;
    padding: 60px 50px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.story-visual {
    flex: 1;
    background: #d3d3d3;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.philosophy-card p {
    color: #666;
    font-size: 16px;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.team-visual {
    flex: 1;
    background: #d6d6d6;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    flex: 1;
    padding: 60px 50px;
    background: #ffffff;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.values-full {
    padding: 80px 30px;
    background: #ffffff;
}

.values-full h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    font-size: 16px;
}

.coverage-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.coverage-content {
    flex: 1;
    padding: 60px 50px;
    background: #f8f9fa;
}

.coverage-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.coverage-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

.coverage-visual {
    flex: 1;
    background: #d4d4d4;
}

.coverage-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

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

.service-detail-visual {
    flex: 0 0 45%;
    background: #d2d2d2;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
}

.booking-prompt {
    text-align: center;
    padding: 80px 30px;
    background: #f8f9fa;
}

.booking-prompt h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-prompt p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.contact-info {
    flex: 1;
    padding: 60px 50px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.email-display {
    font-weight: 600;
    color: #3498db;
}

.hours-note {
    margin-top: 15px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background: #d1d1d1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area {
    padding: 80px 30px;
    background: #f8f9fa;
}

.service-area h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.area-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.area-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.area-list li {
    flex: 0 1 calc(50% - 8px);
    padding: 12px 20px;
    background: #ffffff;
    border-left: 3px solid #3498db;
    font-size: 16px;
    color: #2c3e50;
}

.faq-section {
    padding: 80px 30px;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.faq-item {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 16px;
    color: #555;
}

.enquiry-cta {
    text-align: center;
    padding: 80px 30px;
    background: #f8f9fa;
}

.enquiry-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.enquiry-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    padding: 60px 50px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.confirmation-details {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 30px 0;
}

.confirmation-details p {
    margin-bottom: 10px;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.thanks-visual {
    flex: 1;
    background: #d7d7d7;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .story-split,
    .team-split,
    .coverage-split,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

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

    .section-header-centered h2,
    .approach-full h2,
    .philosophy-section h2,
    .values-full h2,
    .service-area h2,
    .faq-section h2 {
        font-size: 32px;
    }

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

    .approach-item,
    .philosophy-card {
        flex: 0 1 100%;
    }

    .area-list li {
        flex: 0 1 100%;
    }

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