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

:root {
    --primary-color: #1a4d7c;
    --secondary-color: #2a6ba3;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe4ea;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #d35400;
}

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

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

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

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

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.split-image {
    flex: 1;
    padding: 0 40px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.split-content {
    flex: 1;
    padding: 0 60px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.insight-block {
    background: var(--bg-light);
    padding: 80px 0;
}

.insight-block h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.insight-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.insight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.story-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
}

.story-intro {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-light);
}

.story-highlight {
    background: var(--bg-light);
    padding: 32px;
    border-left: 4px solid var(--accent-color);
    margin: 32px 0;
}

.story-highlight p {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.services-preview-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--bg-white);
}

.split-content-left {
    flex: 1;
    padding: 0 60px;
}

.split-content-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.split-content-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-list-preview {
    list-style: none;
    margin-bottom: 32px;
}

.service-list-preview li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
    color: var(--text-dark);
}

.split-content-right {
    flex: 1;
    padding: 0 40px;
}

.split-content-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.trust-indicators {
    background: var(--bg-light);
    padding: 80px 0;
}

.trust-indicators h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 14px;
}

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

.split-form {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.form-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.main-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.final-push {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-push h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: white;
}

.final-push p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
}

.final-push .cta-primary {
    background: var(--accent-color);
}

.final-push .cta-primary:hover {
    background: #d35400;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d35400;
    transform: translateY(-2px);
    color: white;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.services-detailed {
    padding: 60px 0;
}

.service-item {
    margin-bottom: 80px;
}

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

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

.service-content {
    flex: 1;
    padding: 0 40px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.services-cta {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.split-section {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

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

.split-left,
.split-right {
    flex: 1;
    padding: 0 40px;
}

.split-left h2,
.split-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.split-left p,
.split-right p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-left img,
.split-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-approach {
    background: var(--bg-light);
    padding: 80px 0;
}

.about-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.approach-card {
    flex: 1 1 calc(50% - 16px);
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.about-who h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
}

.about-who p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.client-list {
    margin: 32px 0;
}

.client-list li {
    padding: 16px 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-difference {
    background: var(--bg-light);
    padding: 80px 0;
}

.about-difference h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.difference-split {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.difference-col {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.difference-col.highlight {
    background: var(--primary-color);
    color: white;
}

.difference-col h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.difference-col.highlight h3 {
    color: white;
}

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

.difference-col ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.difference-col ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 24px;
}

.difference-col.highlight ul li {
    color: rgba(255,255,255,0.9);
}

.about-cta {
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 60px 0 80px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    margin: 0;
    color: var(--text-dark);
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-cta {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    padding: 12px 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

.thanks-cta {
    margin-top: 48px;
}

.thanks-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.legal-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .split-section,
    .services-preview-split,
    .split-form,
    .split-service,
    .contact-split,
    .difference-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .split-section.reverse,
    .split-service.reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .split-left,
    .split-right,
    .split-content-left,
    .form-left,
    .form-right,
    .service-content {
        padding: 24px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .insight-grid,
    .testimonial-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .sticky-cta {
        bottom: 12px;
        right: 12px;
    }

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }

    .approach-card {
        flex: 1 1 100%;
    }

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