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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.header {
    background: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.ad-disclosure {
    font-size: 12px;
    color: #9ca3af;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #3b82f6;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #e5e7eb;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.split-intro-image {
    flex: 1;
    background: #f3f4f6;
}

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

.split-intro-text {
    flex: 1;
    padding: 80px 60px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
    font-weight: 700;
}

.split-intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
}

.why-outsource {
    padding: 100px 0;
    background: #ffffff;
}

.why-outsource .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.why-content-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a2332;
    font-weight: 700;
}

.why-content-left p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4b5563;
    line-height: 1.7;
}

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

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 20px;
}

.why-content-right {
    flex: 1;
    background: #e5e7eb;
}

.why-content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.services-overview {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a2332;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    color: #1a2332;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0 24px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 0 24px 20px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #5568d3;
}

.form-section {
    padding: 100px 0;
    background: #1a2332;
}

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-left {
    flex: 1;
    color: #ffffff;
}

.form-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.form-right {
    flex: 1;
}

.form-right form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.form-right input,
.form-right select,
.form-right textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-right input:focus,
.form-right select:focus,
.form-right textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-right textarea {
    resize: vertical;
}

.form-right button[type="submit"] {
    width: 100%;
    background: #667eea;
}

.form-right button[type="submit"]:hover {
    background: #5568d3;
}

.trust-section {
    padding: 100px 0;
    background: #f9fafb;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a2332;
    font-weight: 700;
}

.trust-intro {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 60px;
}

.testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 360px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fef3c7;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #78350f;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-cookie-accept {
    background: #10b981;
    color: #ffffff;
}

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

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

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

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-content .btn-primary {
    background: #667eea;
    color: #ffffff;
}

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

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

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

    .split-intro-image,
    .split-intro-text {
        flex: none;
        width: 100%;
    }

    .why-outsource .container {
        flex-direction: column;
    }

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

    .nav {
        width: 100%;
        justify-content: center;
    }

    .header-content {
        justify-content: center;
        text-align: center;
    }
}