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

.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

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

.nav-links a:hover {
    opacity: 0.7;
}

.ad-label {
    color: #999;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 4rem;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.hero-right {
    flex: 1;
    background-color: #e8eaed;
    min-height: 600px;
    position: relative;
    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: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

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

.intro-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 2rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: stretch;
}

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

.service-image {
    flex: 1;
    background-color: #e8eaed;
    min-height: 300px;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

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

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

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    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: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

.trust-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.6rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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;
}

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

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

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.7;
}

.page-hero-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detailed {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
}

.price-note {
    font-size: 0.9rem;
    color: #6b7280;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .cta-primary {
    background-color: #1a1a1a;
}

.cta-content .cta-primary:hover {
    background-color: #333333;
}

.about-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.about-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.team-section-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

.team-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.contact-info-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.contact-cta-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

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

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
}

.thanks-next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    opacity: 0.7;
}

.legal-page {
    min-height: 70vh;
    padding: 3rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

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

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

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

@media screen and (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-container-split,
    .trust-content-split,
    .testimonials-grid,
    .footer-content,
    .service-detail-split,
    .about-split,
    .values-grid,
    .team-content,
    .process-steps,
    .contact-info-split {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .intro-text h2,
    .service-detail-content h2,
    .about-text h2,
    .team-text h2,
    .contact-details h2,
    .contact-cta-content h2 {
        font-size: 1.8rem;
    }

    .section-header-center h2,
    .testimonials-section h2,
    .values-section h2,
    .approach-section h2 {
        font-size: 2rem;
    }

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

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