* {
    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-color: #ffffff;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    padding: 4rem 5%;
    padding-right: 3rem;
}

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

.hero-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-right {
    height: 600px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-inline {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-inline:hover {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

.split-content,
.split-image {
    flex: 1;
}

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

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

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.split-image {
    overflow: hidden;
}

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

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

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

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

.services-intro p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #333333;
}

.testimonials-split {
    display: flex;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.testimonial-block blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 1rem;
    font-style: normal;
    color: #999999;
}

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

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    background-color: #0066cc;
    color: #ffffff;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.form-benefits li {
    padding: 0.7rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

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

.form-right {
    background-color: #f8f9fa;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.selected-service-info {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0066cc;
}

.selected-service-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1.2rem 5%;
    display: none;
    z-index: 90;
}

.cta-sticky.visible {
    display: block;
}

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

.cta-content span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-cta-sticky {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-sticky:hover {
    background-color: #0052a3;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #999999;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-cookie-alt:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.page-hero-split {
    background-color: #f8f9fa;
    padding: 5rem 5%;
    text-align: center;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-content-center p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-section-full {
    padding: 5rem 5%;
    background-color: #0066cc;
    text-align: center;
    color: #ffffff;
}

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

.cta-section-full p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.service-detail-content ul {
    margin: 1rem 0 2rem 1.5rem;
}

.service-detail-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
}

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

.service-detail-image {
    overflow: hidden;
}

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

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

.contact-info-side,
.contact-map-side {
    flex: 1;
}

.contact-info-side {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

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

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-block a {
    color: #0066cc;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-map-side {
    overflow: hidden;
}

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

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.7rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.thanks-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-service-display {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
    border: 1px solid #e0e0e0;
}

.thanks-service-display p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.next-steps-list {
    counter-reset: steps;
    list-style: none;
    margin: 0;
}

.next-steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.next-steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-additional {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.thanks-additional h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.thanks-links {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-link-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-link-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .testimonials-split,
    .form-section-split,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

    .split-section.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left {
        padding-right: 5%;
    }

    .hero-right {
        height: 400px;
    }

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

    .values-split-grid {
        flex-direction: column;
    }

    .value-block {
        flex: 1 1 100%;
    }

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        gap: 1rem;
    }

    .hero-left h1,
    .hero-content-center h1 {
        font-size: 2rem;
    }

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

    .cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-main {
        flex-direction: column;
    }
}