* {
    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;
}

.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #4a9eff;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 2rem 4rem 4rem;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #fff;
}

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

.intro-left {
    flex: 1;
    padding: 4rem;
}

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

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.intro-right {
    flex: 1;
}

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

.services-showcase {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

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

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

.service-split {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
    padding: 3rem;
}

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

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #333;
}

.service-image {
    flex: 1;
}

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

.process-split {
    display: flex;
    background-color: #f8f9fa;
}

.process-left {
    flex: 1;
    padding: 4rem;
}

.process-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.process-step {
    margin-bottom: 2rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.process-right {
    flex: 1;
}

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

.testimonial-section {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: #aaa;
    font-style: normal;
}

.form-split {
    display: flex;
    background-color: #f8f9fa;
}

.form-left {
    flex: 1;
    padding: 4rem;
}

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

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    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: #2563eb;
}

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

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

.cta-final {
    padding: 5rem 2rem;
    background-color: #2563eb;
    text-align: center;
}

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

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

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    color: #4a9eff;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #4a9eff;
}

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

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

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

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

.page-hero-split .hero-left {
    background-color: #2563eb;
    color: #fff;
}

.page-hero-split .hero-left h1 {
    color: #fff;
}

.page-hero-split .hero-left p {
    color: #e0e7ff;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.about-left {
    flex: 1;
    padding: 0 4rem;
}

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

.about-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-right {
    flex: 1;
}

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

.values-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.values-left {
    flex: 1;
    padding: 0 4rem;
}

.values-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.values-right {
    flex: 1;
}

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

.team-section {
    padding: 4rem 2rem;
}

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

.team-split {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}

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

.team-content {
    flex: 1;
    padding: 3rem;
}

.team-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-image {
    flex: 1;
}

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

.cta-about {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-about .cta-content h2 {
    color: #fff;
}

.cta-about .cta-content p {
    color: #aaa;
}

.services-detailed {
    padding: 2rem 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
    align-items: stretch;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
}

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

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

.service-detail-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #1a1a1a;
}

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

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.pricing-box {
    background-color: #fff;
    padding: 1.5rem;
    border-left: 4px solid #2563eb;
    margin-bottom: 2rem;
}

.pricing-box .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.pricing-box .price-note {
    display: block;
    font-size: 0.95rem;
    color: #777;
}

.service-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

.process-overview {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

.process-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

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

.process-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-services {
    padding: 5rem 2rem;
    background-color: #2563eb;
    text-align: center;
}

.contact-info-split {
    display: flex;
    padding: 4rem 0;
}

.contact-info-left {
    flex: 1;
    padding: 0 4rem;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-detail a {
    color: #2563eb;
    text-decoration: none;
}

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2563eb;
}

.contact-note p {
    font-size: 1rem;
    color: #555;
}

.contact-info-right {
    flex: 1;
}

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

.contact-cta {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: #fff;
}

.contact-cta .cta-content p {
    color: #aaa;
}

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

.thanks-left {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

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

.thanks-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-info {
    margin-bottom: 2rem;
}

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

.thanks-info ul {
    padding-left: 1.5rem;
}

.thanks-info ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.thanks-service {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #e0e7ff;
    border-radius: 8px;
}

.thanks-service h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #333;
}

.thanks-right {
    flex: 1;
}

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

.thanks-next {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

.next-steps-grid {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.next-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.next-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.next-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.next-card a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.7;
}

.legal-container a {
    color: #2563eb;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-split,
    .process-split,
    .form-split,
    .about-split,
    .values-split,
    .team-split,
    .service-detail-split,
    .contact-info-split,
    .thanks-split,
    .page-hero-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-left,
    .process-left,
    .form-left,
    .about-left,
    .values-left,
    .contact-info-left,
    .thanks-left {
        padding: 2rem;
    }

    .form-right {
        padding: 2rem;
    }

    .service-content,
    .team-content,
    .service-detail-content {
        padding: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

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

    .testimonials-grid {
        flex-direction: column;
    }

    .process-grid,
    .next-steps-grid {
        flex-direction: column;
    }
}