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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #e8b956;
    --text-dark: #1f1f1f;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background: var(--accent-color);
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-cookie:hover {
    background: #d4a345;
}

.btn-cookie.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    min-height: 500px;
}

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

.split-left,
.split-right {
    flex: 1;
    padding: 3rem;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.hero-split {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8eef3 100%);
    padding: 4rem 2rem;
}

.hero-split .split-left {
    padding-right: 4rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 82, 0.3);
}

.cta-primary.large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: #d4a345;
    transform: translateY(-2px);
}

.intro-alternate {
    padding: 4rem 2rem;
}

.content-block {
    max-width: 600px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-amplify {
    background: var(--primary-color);
    color: white;
    padding: 5rem 2rem;
}

.problem-amplify h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pain-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pain-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.pain-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pain-card p {
    color: rgba(255, 255, 255, 0.9);
}

.insight-reveal {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.trust-social {
    padding: 5rem 2rem;
    background: white;
}

.trust-social h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 2px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-reveal {
    padding: 5rem 2rem;
    background: white;
}

.services-reveal h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.select-service {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.select-service:hover {
    background: var(--secondary-color);
}

.urgency-block {
    padding: 4rem 2rem;
    background: #f4e8d8;
}

.final-cta-split {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.main-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #d4a345;
    transform: translateY(-2px);
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background: #d4a345;
    transform: scale(1.05);
}

.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8eef3 100%);
}

.story-section {
    padding: 4rem 2rem;
}

.values-split {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values-split h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-block {
    padding: 4rem 2rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-list li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.stats-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.approach-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.team-intro {
    padding: 4rem 2rem;
}

.center {
    text-align: center;
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.cta-about h2 {
    color: white;
}

.cta-about p {
    color: rgba(255, 255, 255, 0.9);
}

.service-detail {
    padding: 4rem 2rem;
}

.service-detail.alt {
    background: var(--bg-light);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

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

.service-price-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-light);
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.form-section {
    padding: 5rem 2rem;
}

.contact-info-section {
    padding: 4rem 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-approach {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.contact-approach h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 2rem;
}

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

.process-step h3 {
    margin-bottom: 1rem;
}

.privacy-note {
    padding: 4rem 2rem;
}

.faq-contact {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.faq-contact h2 {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 2px;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8eef3 100%);
    text-align: center;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(232, 185, 86, 0.2);
    border-radius: 4px;
}

.next-steps {
    padding: 4rem 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steps-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.meanwhile {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.thanks-reassurance {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: white;
}

.thanks-reassurance h2 {
    color: var(--accent-color);
}

.thanks-reassurance p {
    color: rgba(255, 255, 255, 0.9);
}

.legal-page {
    padding: 4rem 2rem;
}

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

.content-legal h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.content-legal h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.content-legal h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.content-legal ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-legal a {
    color: var(--accent-color);
    text-decoration: underline;
}

.content-legal a:hover {
    color: var(--secondary-color);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
}

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

.gdpr-table th,
.cookies-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.gdpr-table tr:nth-child(even),
.cookies-table tr:nth-child(even) {
    background: var(--bg-light);
}

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

    h2 {
        font-size: 1.6rem;
    }

    .split-container {
        flex-direction: column !important;
        min-height: auto;
    }

    .split-left,
    .split-right {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-split .split-left {
        padding-right: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-split-grid {
        justify-content: center;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}