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

a {
    text-decoration: none;
    color: inherit;
}

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    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: #2d3748;
}

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

.nav-link {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2d3748;
}

.nav-link.active {
    color: #2d3748;
    border-bottom: 2px solid #2d3748;
}

.ad-label {
    padding: 0.4rem 0.8rem;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #718096;
}

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

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

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

.hero-left p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d3748;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5e81ac;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #4c6a94;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.intro-section p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

.services-split {
    background-color: #f7fafc;
    padding: 6rem 0;
}

.split-row {
    display: flex;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
}

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

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
}

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

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

.benefits-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #2d3748;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5e81ac;
    font-weight: bold;
}

.link-arrow {
    color: #5e81ac;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #4c6a94;
}

.insight-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.insight-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.insight-visual img {
    width: 100%;
    height: 100%;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #2d3748;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #cbd5e0;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #5e81ac;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d3748;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

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

.testimonials-grid {
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #5e81ac;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #a0aec0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-content a {
    color: #88c0d0;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #5e81ac;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #4c6a94;
}

.cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #2d3748;
}

.page-header {
    padding: 5rem 2rem 3rem;
    background-color: #f7fafc;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card-split {
    display: flex;
    margin-bottom: 5rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

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

.service-visual {
    flex: 0 0 45%;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

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

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
}

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

.service-details h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.9rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5e81ac;
    font-size: 1.5rem;
    line-height: 1;
}

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

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

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
}

.service-duration {
    margin-top: 0.5rem;
    color: #718096;
    font-size: 0.95rem;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #5e81ac;
    text-align: center;
}

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

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

.about-story {
    padding: 5rem 2rem;
}

.split-content-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.split-content-layout.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.visual-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.visual-block img {
    width: 100%;
    height: 100%;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.principle-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.principle-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

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

.team-approach {
    padding: 5rem 2rem;
}

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

.background-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.background-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info-section {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

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

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    max-height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.location-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.location-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

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

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

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

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.service-confirmation {
    font-size: 1.1rem;
    color: #5e81ac;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2d3748;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #5e81ac;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.next-steps {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

.steps-grid {
    display: flex;
    gap: 3rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

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

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

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

.legal-page {
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-updated {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

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

.legal-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

.legal-page a {
    color: #5e81ac;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #4c6a94;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .split-row,
    .split-row.reverse {
        flex-direction: column;
    }

    .insight-grid,
    .split-content-layout,
    .split-content-layout.reverse {
        flex-direction: column;
    }

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

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

    .service-visual {
        flex: 0 0 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

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