* {
    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: #1a1a1a;
    background: #ffffff;
}

.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: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 5rem 5%;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #444;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

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

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

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #444;
}

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

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

.services-split {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.1rem;
    color: #444;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #444;
    font-size: 0.95rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066cc;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card button {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

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

.form-content {
    flex: 1;
    padding: 5rem 5%;
    background: #f8f9fa;
}

.form-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #444;
}

.form-image {
    flex: 1;
    background: #e8e8e8;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.trust-image {
    flex: 1;
    background: #e8e8e8;
}

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

.trust-content {
    flex: 1;
    padding: 5rem 5%;
    background: #ffffff;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #444;
}

footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 6px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #66aaff;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

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

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

.cookie-reject:hover {
    background: #333;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 4rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 600;
    color: #0066cc;
    margin: 1.5rem 0 0.5rem;
}

.price-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

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

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #444;
}

.contact-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.no-link {
    pointer-events: none;
    user-select: text;
}

.contact-map {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 5%;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #444;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #444;
}

.thanks-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 5rem 5%;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-image {
    flex: 1;
    background: #e8e8e8;
}

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

.select-service {
    cursor: pointer;
}

@media (max-width: 968px) {
    .hero-split,
    .split-standard,
    .split-reverse,
    .form-split,
    .trust-split,
    .contact-split,
    .thanks-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .form-content,
    .trust-content,
    .thanks-content {
        padding: 3rem 5%;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .split-content h2 {
        font-size: 1.75rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

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

    .thanks-actions a {
        text-align: center;
    }
}
