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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    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-color: #2563eb;
    color: #fff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding: 4px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

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

.hero-left p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.intro-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.8;
}

.services-showcase {
    padding: 80px 40px;
    background-color: #f9fafb;
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1d4ed8;
}

.form-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.form-container-split {
    display: flex;
    gap: 60px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-left {
    flex: 1;
    padding: 60px;
    background-color: #1e3a8a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.form-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #60a5fa;
}

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

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

.trust-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.trust-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.trust-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f9fafb;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-container .service-selected {
    font-weight: 700;
    color: #2563eb;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #1d4ed8;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .service-card,
    .form-container-split,
    .footer-content {
        flex-direction: column;
    }

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

    .nav-container {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

    .services-showcase h2 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}