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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-color: #2b2b2b;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --grey: #6c757d;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-right a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--highlight-color);
}

.hero-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
}

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

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

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    margin-top: 1rem;
}

.cta-primary:hover {
    background: var(--highlight-color);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.3s;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

.split-standard {
    display: flex;
    align-items: center;
}

.split-reverse {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    padding: 4rem 5%;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.value-grid {
    display: flex;
    padding: 4rem 5%;
    gap: 3rem;
    background: var(--light-bg);
}

.value-item {
    flex: 1;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial-split {
    display: flex;
    background: var(--secondary-color);
    color: var(--white);
}

.testimonial-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    align-items: center;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.process-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.process-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    text-align: left;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-inline {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.cta-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.cta-left {
    flex: 1;
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.cta-left h2 {
    color: var(--white);
}

.cta-right {
    flex: 1;
    padding: 4rem 5%;
    background: var(--light-bg);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.service-form input,
.service-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.service-form input:focus,
.service-form select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--highlight-color);
}

.trust-banner {
    padding: 3rem 5%;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.trust-banner p {
    margin: 0;
    color: var(--white);
}

.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.footer-left p {
    margin: 0;
    color: var(--white);
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-right a:hover {
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--white);
}

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--highlight-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--accent-color);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.values-section {
    padding: 5rem 5%;
    text-align: center;
}

.values-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: left;
}

.team-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.team-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cta-full {
    padding: 5rem 5%;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.cta-full h2 {
    color: var(--white);
}

.cta-full p {
    color: var(--white);
    font-size: 1.2rem;
}

.service-intro {
    padding: 4rem 5%;
    text-align: center;
}

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

.service-block {
    padding: 5rem 0;
}

.service-block:nth-child(even) {
    background: var(--light-bg);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.service-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-ideal {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.faq-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1.5rem);
    text-align: left;
    min-width: 300px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.inline-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.thanks-hero {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 4rem 5%;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
}

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

.service-confirmation {
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-weight: 600;
}

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

.next-steps {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.steps-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.resources-section {
    padding: 5rem 5%;
    text-align: center;
}

.resources-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.resource-card {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
}

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

    h2 {
        font-size: 1.7rem;
    }

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

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .split-standard,
    .split-reverse,
    .cta-split,
    .testimonial-split,
    .thanks-hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-text,
    .split-image,
    .cta-left,
    .cta-right,
    .testimonial-content,
    .testimonial-image,
    .thanks-content,
    .thanks-image {
        padding: 2rem 5%;
    }

    .value-grid,
    .process-split,
    .values-split,
    .team-split,
    .faq-split,
    .steps-split,
    .resources-split {
        flex-direction: column;
    }

    .trust-banner {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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