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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    padding: 2rem 3rem;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

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

.intro-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-container {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.intro-container img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    background-color: #f5f7fa;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.insight-section {
    padding: 8rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.citation {
    color: #9db4c8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #ffffff;
}

.services-section {
    padding: 10rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 400px;
    background: #f9f9f9;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #f5f5f5;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 2rem;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-section {
    padding: 8rem 2rem;
    background: #f5f7fa;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

blockquote {
    flex: 1;
    min-width: 300px;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #1a1a1a;
}

blockquote p {
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.form-section {
    padding: 8rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

#formMessage {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

#formMessage.selected {
    color: #1a1a1a;
    font-weight: 500;
}

.enquiry-form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.disclaimer-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 3px solid #1a1a1a;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.references-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.references-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.references-content ol {
    margin-left: 1.5rem;
}

.references-content li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.references-content a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.references-content a:hover {
    border-color: #1a1a1a;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.7;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #808080;
}

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

    .hero p {
        font-size: 1.1rem;
    }

    .intro-container {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-container img {
        max-width: 100%;
    }

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

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

    .testimonial-container {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.thanks-content .service-info {
    background: #f5f7fa;
    padding: 2rem;
    margin: 2rem 0;
}

.thanks-content .service-info p {
    margin: 0;
}

.contact-page {
    padding: 8rem 2rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    padding: 2rem;
    background: #f9f9f9;
}

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-page {
    padding: 8rem 2rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-page li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
