* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #0066cc;
    color: white;
}

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

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

.btn-reject:hover {
    border-color: #999;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 0;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
    font-size: 1.05rem;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.split-intro {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.split-content-left {
    flex: 1;
}

.split-content-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.split-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.25;
    font-weight: 700;
}

.split-content-right p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.insight-block {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.insight-left {
    flex: 1;
}

.insight-left h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 700;
}

.insight-left p {
    font-size: 1.15rem;
    color: #555;
    margin-top: 1.5rem;
    line-height: 1.7;
}

.insight-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 1.25rem 0;
    border-left: 4px solid #0066cc;
    padding-left: 1.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

.value-proposition {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.value-content h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.value-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.02rem;
}

.services-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.services-left {
    flex: 1;
}

.services-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-right {
    flex: 1;
}

.services-right img {
    width: 100%;
    border-radius: 8px;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 2px solid #0066cc;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1rem;
}

.cta-secondary:hover {
    background: #0066cc;
    color: white;
}

.services-selection {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 1.15rem;
    color: #666;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content > p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.02rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: #f0f0f0;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

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

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

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

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 8px;
}

.testimonials-left {
    flex: 1;
}

.testimonials-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #0066cc;
    font-size: 0.95rem;
}

.testimonials-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonials-right img {
    width: 100%;
    border-radius: 8px;
}

.process-overview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.process-overview h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    line-height: 1.7;
    opacity: 0.95;
}

.form-section {
    background: #1a1a1a;
    color: white;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #ccc;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #ddd;
    line-height: 1.6;
}

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

.form-right {
    flex: 1;
}

.service-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.final-cta {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-large:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,102,204,0.3);
}

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column p {
    color: #bbb;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.thanks-container {
    max-width: 800px;
    margin: 8rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-container .selected-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
}

@media (max-width: 968px) {
    .hero-split,
    .split-intro,
    .insight-wrapper,
    .services-intro-split,
    .testimonials-split,
    .form-split {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .value-grid,
    .process-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .split-content-right h2,
    .services-left h2,
    .testimonials-left h2 {
        font-size: 2rem;
    }

    .services-header h2,
    .value-content h2,
    .process-overview h2 {
        font-size: 2rem;
    }
}