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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-right a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav-right a:hover,
.nav-right a.active {
    color: #0066cc;
}

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

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

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

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.btn-large:hover {
    background: #0052a3;
}

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

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

.split-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.split-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #000;
}

.split-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.link-arrow {
    color: #0066cc;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
}

.stats-bar {
    display: flex;
    background: #f8f9fa;
    padding: 3rem 5%;
    gap: 3rem;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
    display: block;
}

.service-preview-card {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.service-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #000;
}

.price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-preview-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.btn-service {
    padding: 0.85rem 2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #0052a3;
}

.dark-bg {
    background: #1a1a1a;
}

.dark-bg .split-content {
    color: #fff;
}

.dark-bg h2,
.dark-bg h3 {
    color: #fff;
}

.dark-bg p {
    color: #d0d0d0;
}

.dark-bg .service-preview-card {
    background: #2a2a2a;
    border-left-color: #66b3ff;
}

.testimonial-split {
    display: flex;
    background: #0066cc;
    color: #fff;
    min-height: 400px;
}

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

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

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

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

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

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-bar {
    padding: 2rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.trust-text {
    font-size: 1.1rem;
    color: #666;
}

.cta-floating {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    padding: 5rem 5%;
    text-align: center;
}

.cta-floating h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-floating p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #0066cc;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-large-white:hover {
    background: #f0f0f0;
}

.form-section {
    padding: 5rem 5%;
    background: #fafafa;
}

.split-form {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.25rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #aaa;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

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

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

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

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

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

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

.page-hero {
    margin-top: 0;
}

.values-section {
    padding: 5rem 5%;
    background: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

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

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

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #0066cc;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.team-section {
    padding: 5rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-big {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
    display: block;
}

.industry-list {
    list-style: none;
    margin-top: 1.5rem;
}

.industry-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid #e5e5e5;
}

.industry-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.cta-section {
    padding: 5rem 5%;
    background: #0066cc;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.services-intro {
    padding: 3rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #e6f2ff;
    color: #0066cc;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.service-detail-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-service-large {
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.btn-service-large:hover {
    background: #0052a3;
}

.packages-section {
    padding: 5rem 5%;
    background: #fafafa;
    text-align: center;
}

.packages-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.package-card {
    flex: 1;
    max-width: 350px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.package-card.featured {
    border: 3px solid #0066cc;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066cc;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.package-save {
    font-size: 0.9rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-card ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.package-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.btn-package {
    display: block;
    padding: 0.9rem 2rem;
    background: #0066cc;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-package:hover {
    background: #0052a3;
}

.contact-split-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background: #fafafa;
}

.contact-info-side {
    flex: 1;
}

.contact-form-side {
    flex: 1.2;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.contact-block p {
    color: #333;
    line-height: 1.8;
}

.contact-block a {
    color: #0066cc;
    text-decoration: underline;
}

.form-description {
    color: #666;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.btn-submit-large {
    width: 100%;
    padding: 1.1rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-large:hover {
    background: #0052a3;
}

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

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.map-placeholder {
    margin-top: 3rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
}

.faq-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.faq-item p {
    color: #666;
}

.thanks-section {
    padding: 5rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #000;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message .lead {
    font-size: 1.4rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps {
    margin: 4rem 0;
}

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

.steps-grid {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.step-card {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 3rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-secondary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-secondary-large:hover {
    background: #0066cc;
    color: #fff;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.email-link {
    color: #0066cc;
    font-weight: 600;
    font-size: 1.2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-box {
    background: #e6f2ff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.selected-service-box h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.service-price {
    font-size: 1.2rem;
    color: #333;
    margin-top: 0.5rem;
}

.resources-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.resources-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.resource-card p {
    color: #666;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 5rem 5%;
    background: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 10px;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-container li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .testimonial-split,
    .split-form,
    .contact-split-section,
    .packages-grid,
    .steps-grid,
    .resources-grid,
    .team-split,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

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

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .split-section h2,
    .values-section h2,
    .team-section h2,
    .packages-section h2 {
        font-size: 2rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

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