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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #0ea5e9;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #e0e7ff;
    overflow: hidden;
}

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

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--primary-dark);
}

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

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

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.services-section {
    background-color: var(--bg-white);
    padding: 5rem 2rem;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

.service-card {
    display: flex;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.service-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: var(--primary-dark);
}

.form-section-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.benefit-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

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

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-column p {
    color: var(--bg-light);
    line-height: 1.8;
}

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

.footer-disclaimer p {
    font-size: 0.875rem;
    color: var(--bg-light);
    line-height: 1.6;
}

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

.footer-bottom p {
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

.cookie-banner.hidden {
    display: none;
}

.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-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-hero-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-light);
}

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

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content-left p {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.values-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.values-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.team-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.team-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
}

.team-card p {
    font-size: 1rem;
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detailed-list {
    list-style: none;
    margin-bottom: 2rem;
}

.detailed-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-time {
    font-style: italic;
    color: var(--text-light);
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-section-center {
    text-align: center;
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.cta-section-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-section-center p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.contact-extra-split.reverse {
    flex-direction: row-reverse;
}

.extra-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.extra-content {
    flex: 1;
}

.extra-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.extra-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.thanks-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.selected-service-box {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

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

.thanks-actions .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

.thanks-actions .btn-secondary:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.thanks-actions .btn-primary {
    text-decoration: none;
    display: inline-block;
}

.next-steps-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.steps-content {
    flex: 1;
}

.steps-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-text p {
    font-size: 1rem;
    color: var(--text-light);
}

.steps-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.legal-page {
    background-color: var(--bg-white);
    padding: 5rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-container li {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .trust-split,
    .about-content-split,
    .values-split,
    .contact-info-split,
    .contact-extra-split,
    .next-steps-split,
    .page-hero-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
    }

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