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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav a:hover {
    color: #8b7355;
}

.ad-label {
    font-size: 12px;
    color: #888;
    border-left: 1px solid #e5e5e5;
    padding-left: 20px;
}

.hero {
    position: relative;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: 0.95;
}

.cta-primary {
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #725d46;
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #2c3e50;
}

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

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.card-features span {
    font-size: 13px;
    background-color: #f0ede9;
    padding: 6px 12px;
    border-radius: 4px;
    color: #555;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.process-section {
    padding: 80px 0;
    background-color: #f8f6f4;
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

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

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.process-card p {
    font-size: 15px;
    color: #666;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f6f4;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #8b7355;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 14px 36px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

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

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.selected-service-text {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-primary {
    background-color: #8b7355;
    color: #ffffff;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #725d46;
}

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

.disclaimer-text {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

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

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

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

.cookie-content p {
    font-size: 14px;
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #8b7355 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    text-align: center;
}

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

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

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

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

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

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

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

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

.content-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
}

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

.values-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f8f6f4;
}

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

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

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

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b7355;
    font-weight: 600;
}

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

.team-section {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-info h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    font-weight: 600;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 15px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

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

.additional-info {
    padding: 80px 0;
    background-color: #f8f6f4;
}

.additional-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

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

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8b7355;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    background-color: #f8f6f4;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

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

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 400px;
    background-color: #e5e5e5;
}

.enquiry-section {
    padding: 80px 0;
    background-color: #f8f6f4;
}

.enquiry-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.enquiry-section > .container > p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.enquiry-section a {
    color: #8b7355;
    text-decoration: underline;
}

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

.enquiry-card {
    flex: 1;
    min-width: 260px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.enquiry-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.enquiry-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
}

.thanks-details {
    max-width: 800px;
    margin: 0 auto 60px;
    background-color: #f8f6f4;
    padding: 50px;
    border-radius: 8px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
    opacity: 0.4;
    min-width: 50px;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.step-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-service-info {
    margin-bottom: 40px;
    font-size: 18px;
    color: #555;
}

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

.thanks-note {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-note p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

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

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

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

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

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

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    font-weight: 600;
    color: #2c3e50;
}

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

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

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

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

.cookie-table td {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .nav {
        gap: 15px;
        font-size: 14px;
    }

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

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

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

    .service-card {
        width: 100%;
    }

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

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

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

    .content-image {
        height: 300px;
    }

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

    .service-image {
        height: 350px;
    }

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

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

    .form-card {
        padding: 30px;
    }
}