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

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

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

.center {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    height: 600px;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.challenge-section {
    background: #f8f9fa;
}

.insight-block {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #fff;
}

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

.insight-block p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.services-showcase {
    padding: 100px 60px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-details {
    padding: 32px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

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

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

.trust-indicators {
    background: #f8f9fa;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

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

.testimonial-section {
    padding: 100px 60px;
    background: #fff;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid #0066cc;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.approach-section {
    padding: 80px 60px;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.approach-section p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.engagement-form {
    padding: 100px 60px;
    background: #fff;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #2c2c2c;
}

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

.form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-selection-display {
    background: #e8f4fd;
    border: 1px solid #0066cc;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
    font-weight: 600;
    color: #0066cc;
}

.service-selection-display.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d1d1;
    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: #0066cc;
}

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

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

.final-cta {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #fff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 60px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.footer-section p {
    color: #a0a0a0;
    font-size: 14px;
}

.footer-section a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #404040;
    color: #a0a0a0;
    font-size: 14px;
}

.contact-page {
    padding: 80px 60px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-info {
    max-width: 600px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #0066cc;
}

.info-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page .last-updated {
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
    line-height: 1.6;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #0066cc;
}

.thanks-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-content .service-summary {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #0066cc;
}

.thanks-content .service-summary strong {
    color: #0066cc;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 40px;
    }

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

    .hero-right {
        width: 100%;
        height: 400px;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
    }

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

    .services-showcase,
    .testimonial-section,
    .engagement-form,
    .final-cta,
    .insight-block,
    .approach-section {
        padding: 60px 40px;
    }

    .form-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }
}

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

    .hero-left p {
        font-size: 16px;
    }

    .section-header h2,
    .split-content h2,
    .insight-block h2,
    .final-cta h2 {
        font-size: 28px;
    }

    .hero-left,
    .split-container,
    .services-showcase,
    .testimonial-section,
    .engagement-form,
    .final-cta,
    .insight-block,
    .approach-section,
    .footer {
        padding: 40px 20px;
    }

    .service-card {
        min-width: auto;
    }

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

    .logo {
        font-size: 20px;
    }
}