* {
    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;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-left p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.cta-primary:hover {
    background-color: #1a252f;
}

.intro-offset {
    display: flex;
    margin: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-content p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-showcase {
    padding: 5rem 5%;
    background-color: #fafbfc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.section-header p {
    font-size: 1.25rem;
    color: #546e7a;
}

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

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

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.75rem;
    font-size: 1.5rem;
    color: #1a252f;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #546e7a;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c3e50;
}

.cta-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 8%;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: #ecf0f1;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.form-section {
    display: flex;
    margin: 5rem 0;
}

.form-container {
    flex: 1;
    padding: 4rem 8%;
    background-color: #f8f9fa;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.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.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    padding: 5rem 8%;
    background-color: #fafbfc;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.trust-content p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.disclaimer-section {
    padding: 3rem 8%;
    background-color: #fff9e6;
    border-top: 3px solid #ffd54f;
    border-bottom: 3px solid #ffd54f;
}

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

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

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.9375rem;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.cookie-banner.hidden {
    display: none;
}

.page-hero {
    padding: 5rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.375rem;
    color: #546e7a;
}

.about-split {
    display: flex;
    margin: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-text p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 8%;
    background-color: #fafbfc;
}

.values-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.value-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    margin: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-text p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.process-section {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.process-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.process-step p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.credentials-section {
    padding: 5rem 8%;
    background-color: #fafbfc;
}

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

.credentials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.credentials-content p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    text-align: center;
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

.cta-about h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.cta-about p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 3rem 5%;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-detail-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #1a252f;
}

.custom-packages {
    padding: 5rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

.custom-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.custom-content p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-split {
    display: flex;
    margin: 5rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

.contact-detail p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
}

.hours-note {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.enquiry-info {
    padding: 5rem 8%;
    background-color: #fafbfc;
}

.enquiry-info h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.enquiry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.enquiry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.enquiry-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-inline {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #2980b9;
}

.service-areas {
    padding: 4rem 8%;
}

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

.areas-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.areas-content p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.response-times {
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

.response-times h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.response-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.response-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.response-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 8%;
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

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

.thanks-details {
    text-align: left;
    margin-bottom: 4rem;
}

.thanks-details p {
    font-size: 1.125rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

#serviceConfirm {
    font-size: 1.25rem;
    color: #2c3e50;
    padding: 1rem;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thanks-link {
    flex: 1;
    padding: 1rem;
    background-color: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #e9ecef;
}

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

.thanks-next h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.step-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

.step-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 8%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.legal-updated {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

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

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

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

.legal-content ul li {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.legal-content a:hover {
    color: #2980b9;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a252f;
}

.cookies-table td {
    color: #546e7a;
}

@media (max-width: 1024px) {
    .hero-split,
    .form-section {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .form-container,
    .form-visual {
        flex: none;
        width: 100%;
    }

    .intro-offset,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .cta-split {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 1rem;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-left h1,
    .hero-content h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2,
    .values-section h2,
    .process-section h2,
    .response-times h2 {
        font-size: 2rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-grid,
    .values-grid,
    .process-content,
    .enquiry-grid,
    .response-content {
        gap: 1.5rem;
    }

    .service-card,
    .value-item,
    .process-step,
    .enquiry-card,
    .response-item {
        flex: 1 1 100%;
    }

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