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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', '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 #e5e5e5;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.header-right {
    display: flex;
    gap: 2rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    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-buttons {
    display: flex;
    gap: 1rem;
}

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fafafa;
}

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

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

.hero-text p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

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

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

.split-intro {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #e5e5e5;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.intro-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.services-highlight {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

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

.btn-select-service {
    width: 100%;
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-split {
    display: flex;
    background-color: #f5f5f5;
}

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

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

.trust-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item strong {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.trust-item span {
    color: #666;
    line-height: 1.6;
}

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

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

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

.form-container-split {
    max-width: 1000px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 3rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

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

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

.btn-submit {
    padding: 1rem 3rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.testimonials-inline {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

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

.testimonial-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

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

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    background-color: #fafafa;
}

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

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

.about-hero-content p {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 600px;
}

.about-hero-image {
    flex: 1;
    background-color: #e5e5e5;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-content-split {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
    padding: 4rem 5%;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e5e5e5;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-values {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.about-cta-split {
    padding: 5rem 5%;
    background-color: #0066cc;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.cta-button:hover {
    background-color: #f0f0f0;
}

.services-header-split {
    padding: 4rem 5%;
    background-color: #fafafa;
}

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

.services-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: #fafafa;
}

.service-detail-image {
    flex: 1;
    background-color: #e5e5e5;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    padding: 0 5%;
}

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

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

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

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

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

.services-cta-final {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.services-cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.services-cta-final p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-button-alt {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-button-alt:hover {
    background-color: #f0f0f0;
}

.contact-hero-split {
    padding: 4rem 5%;
    background-color: #fafafa;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

.contact-content-split {
    display: flex;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 4rem 5%;
}

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

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

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

.contact-detail p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e5e5e5;
}

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-alternative {
    padding: 5rem 5%;
    background-color: #fafafa;
    text-align: center;
}

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

.contact-alternative p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

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

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

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

.thanks-next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 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 p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

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

    .header-left {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .split-intro,
    .trust-split,
    .about-hero-split,
    .about-content-split,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-content-split {
        flex-direction: column;
    }

    .hero-text h1,
    .about-hero-content h1,
    .services-intro h1,
    .contact-intro h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

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

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

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

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