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

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d7a;
    --accent-color: #00aaff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #707070;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-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);
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-cookie, .btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: var(--background-white);
    border: 2px solid var(--background-white);
}

.btn-cookie-alt:hover {
    background-color: var(--background-white);
    color: var(--text-dark);
}

.header {
    background-color: var(--background-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-left, .hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background-color: var(--background-light);
}

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

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-right {
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--background-white);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

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

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.split-left {
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.split-right {
    display: flex;
    align-items: center;
    padding: 60px 50px;
}

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

.content-block h2 {
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

.services-showcase {
    padding: 80px 0;
    background-color: var(--background-white);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    display: flex;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-visual {
    flex: 0 0 40%;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-info p {
    flex: 1;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.form-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-left {
    flex: 0 0 40%;
    padding: 50px;
    background-color: var(--secondary-color);
    color: var(--background-white);
}

.form-left h2 {
    color: var(--background-white);
    margin-bottom: 1.5rem;
}

.form-left p {
    margin-bottom: 1rem;
}

.form-right {
    flex: 1;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-split {
    display: flex;
    padding: 80px 0;
    background-color: var(--background-white);
}

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

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

.split-right-content {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
}

.stats-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.link-arrow::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 12px;
}

.approach-split {
    display: flex;
    min-height: 500px;
    background-color: var(--background-white);
}

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

.technology-showcase {
    padding: 80px 0;
    background-color: var(--background-light);
}

.technology-showcase h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
}

.tech-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tech-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tech-category p {
    color: var(--text-medium);
    line-height: 1.8;
}

.cta-split {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--background-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--background-white);
    margin-bottom: 2rem;
}

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

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

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

.footer-column h4 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.footer-column p {
    color: #b0b0b0;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--background-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #404040;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
}

.page-hero-split {
    display: flex;
    min-height: 450px;
}

.story-split {
    padding: 80px 0;
    background-color: var(--background-light);
}

.story-split h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-split p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.values-split {
    background-color: var(--background-white);
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.team-overview {
    padding: 80px 0;
    background-color: var(--background-light);
}

.team-overview h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
}

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

.expertise-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.expertise-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-item p {
    color: var(--text-medium);
}

.approach-detail-split {
    display: flex;
    padding: 80px 0;
    background-color: var(--background-white);
}

.industry-list {
    list-style-type: none;
    padding: 0;
}

.industry-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.industry-list li:last-child {
    border-bottom: none;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    background-color: var(--background-white);
}

.service-detail-split:nth-child(even) {
    background-color: var(--background-light);
}

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

.service-price-detail {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-features {
    list-style-type: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
}

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

.contact-split {
    display: flex;
    padding: 80px 0;
    background-color: var(--background-white);
}

.contact-info-block, .contact-cta-block {
    flex: 1;
    padding: 40px;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
}

.contact-cta-block {
    background-color: var(--background-light);
}

.contact-note {
    margin-top: 2rem;
    padding: 20px;
    background-color: var(--background-white);
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-note ol {
    margin: 0;
    padding-left: 1.5rem;
}

.map-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 30px;
}

.map-placeholder {
    max-width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-caption {
    text-align: center;
    color: var(--text-medium);
}

.thanks-hero {
    padding: 100px 0;
    background-color: var(--background-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-main {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.submission-summary p {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-split {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    flex: 1;
    padding: 30px;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--text-medium);
}

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

.thanks-contact {
    margin-top: 40px;
}

.thanks-contact p {
    font-size: 1.0625rem;
    color: var(--text-medium);
}

.legal-page {
    padding: 80px 0;
    background-color: var(--background-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul, .legal-page ol {
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.legal-page p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.cookie-table thead {
    background-color: var(--background-light);
}

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

.cookie-table th {
    font-weight: 600;
}

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .split-section,
    .page-hero-split {
        flex-direction: column;
    }

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

    .hero-left, .hero-right,
    .split-left, .split-right,
    .split-left-content, .split-right-content {
        padding: 40px 20px;
    }

    .hero-right img {
        min-height: 300px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.9375rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 250px;
    }

    .form-split {
        flex-direction: column;
    }

    .form-left, .form-right {
        padding: 30px;
    }

    .tech-split-grid {
        flex-direction: column;
    }

    .footer-split {
        flex-direction: column;
    }

    .steps-split {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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

    .approach-detail-split {
        flex-direction: column;
    }

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

@media (max-width: 600px) {
    .cookie-content {
        font-size: 14px;
    }

    .btn-cookie, .btn-cookie-alt {
        padding: 8px 20px;
        font-size: 13px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .nav-brand a {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header-centered h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .thanks-content h1 {
        font-size: 1.75rem;
    }
}
