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

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.btn-cookie {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

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

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

.btn-primary,
.btn-secondary,
.btn-cta-large,
.btn-submit,
.btn-sticky {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-cta-large {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-cta-large:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
}

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

.btn-select-service {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-split,
.intro-split,
.page-hero-split,
.story-split,
.insight-split,
.info-split,
.contact-info-split,
.contact-methods-split,
.services-intro-split,
.privacy-note-split,
.contact-hero-split,
.team-split,
.approach-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left,
.hero-right,
.intro-left,
.intro-right,
.story-left,
.story-right,
.insight-left,
.insight-right,
.info-left,
.info-right,
.methods-left,
.methods-right,
.privacy-left,
.privacy-right,
.team-left,
.team-right,
.approach-left,
.approach-right {
    flex: 1;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left,
.intro-left,
.story-right,
.insight-right,
.info-left,
.methods-left,
.privacy-left,
.team-left,
.approach-left {
    background-color: var(--bg-white);
}

.hero-right,
.intro-right,
.story-left,
.insight-left,
.info-right,
.methods-right,
.privacy-right,
.team-right,
.approach-right {
    background-color: var(--bg-light);
}

.hero-right img,
.intro-right img,
.story-left img,
.insight-left img,
.info-right img,
.methods-right img,
.privacy-right img,
.team-right img,
.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-section,
.trust-section,
.services-pricing,
.form-section,
.cta-final,
.values-section,
.experience-section,
.faq-section,
.cta-services,
.cta-contact,
.services-detailed {
    padding: 4rem 1.5rem;
}

.problem-container,
.trust-container,
.pricing-intro,
.form-container-split,
.cta-content,
.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-section {
    background-color: var(--bg-light);
}

.problem-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-left h2 {
    margin-bottom: 2rem;
}

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

.problem-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.problem-right {
    width: 100%;
}

.problem-right img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.trust-section {
    background-color: var(--bg-white);
}

.trust-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.875rem;
}

.services-pricing {
    background-color: var(--bg-light);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    margin-bottom: 1.5rem;
}

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

.form-section {
    background-color: var(--bg-white);
}

.form-container-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-left h2 {
    margin-bottom: 1rem;
}

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

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

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

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cta-final,
.cta-services,
.cta-contact {
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content {
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 1.5rem 1rem;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-sticky:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.thanks-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

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

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

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

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

.value-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.exp-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.exp-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.method-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item .note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder {
    background-color: var(--bg-light);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

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

.faq-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.faq-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
}

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

.service-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    color: var(--text-light);
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.legal-page {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 0.5rem;
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

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

.faq-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    padding: 0;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-split,
    .intro-split,
    .page-hero-split,
    .story-split,
    .insight-split,
    .contact-info-split,
    .contact-methods-split,
    .services-intro-split,
    .privacy-note-split,
    .contact-hero-split,
    .team-split,
    .approach-split {
        flex-direction: row;
    }

    .problem-container {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .testimonial {
        flex: 1;
    }

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

    .services-split-grid .service-card:nth-child(even) {
        flex-direction: row-reverse;
    }

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

    .service-image img {
        height: 100%;
    }

    .form-container-split {
        flex-direction: row;
        align-items: center;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }

    .value-card {
        flex-direction: row;
        align-items: center;
    }

    .value-card:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .team-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .experience-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .exp-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .method-list {
        flex-direction: row;
    }

    .method-item {
        flex: 1;
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .faq-grid,
    .faq-split-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-card,
    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-detail-split {
        flex-direction: row;
        align-items: center;
    }

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

    .service-detail-image img {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right {
        padding: 5rem 3rem;
    }
}