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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 12px;
    color: #6b7280;
    padding: 6px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 25px;
}

.nav-main a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #1f2937;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f9fafb;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 32px;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-right {
    flex: 1;
    position: relative;
}

.intro-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.intro-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 60px;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #111827;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 40px;
    background-color: #f9fafb;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.services-header p {
    font-size: 18px;
    color: #6b7280;
}

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

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 1;
    position: relative;
    min-height: 300px;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #111827;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.consultation-split {
    display: flex;
    min-height: 600px;
}

.consultation-left {
    flex: 1;
    padding: 60px;
    background-color: #1f2937;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.consultation-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.consultation-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #d1d5db;
}

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

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 14px;
    position: relative;
    font-size: 16px;
    color: #e5e7eb;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.consultation-right {
    flex: 1;
    padding: 60px;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
}

.form-main {
    width: 100%;
    max-width: 500px;
}

.form-main h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #111827;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f2937;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-split {
    display: flex;
    min-height: 500px;
}

.trust-right {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #6b7280;
}

.trust-left {
    flex: 1;
    padding: 60px;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.disclaimer-section {
    padding: 40px 60px;
    background-color: #fef3c7;
    border-top: 3px solid #f59e0b;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

.footer-split {
    display: flex;
    padding: 60px 40px;
    background-color: #111827;
    color: #e5e7eb;
}

.footer-left {
    flex: 1;
    padding-right: 60px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    color: #9ca3af;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
    color: #d1d5db;
}

.footer-contact p {
    margin-bottom: 6px;
}

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #059669;
}

.btn-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4b5563;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #1f2937;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-left h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero-left p {
    font-size: 18px;
    color: #d1d5db;
}

.page-hero-right {
    flex: 1;
    position: relative;
}

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

.about-story-split {
    display: flex;
    min-height: 500px;
}

.story-right {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.story-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.story-left {
    flex: 1;
    position: relative;
}

.story-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.approach-split {
    display: flex;
    min-height: 600px;
    background-color: #f9fafb;
}

.approach-left {
    flex: 1.2;
    padding: 60px;
}

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f2937;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.approach-right {
    flex: 0.8;
    padding: 60px;
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-box {
    max-width: 400px;
}

.quote-box blockquote p {
    font-size: 20px;
    line-height: 1.6;
    color: #e5e7eb;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
}

.team-expertise {
    padding: 80px 40px;
    background-color: #ffffff;
}

.expertise-header {
    text-align: center;
    margin-bottom: 50px;
}

.expertise-header h2 {
    font-size: 42px;
    color: #111827;
}

.expertise-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.expertise-left {
    flex: 1;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding-left: 30px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    color: #374151;
}

.expertise-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1f2937;
    font-weight: bold;
}

.expertise-right {
    flex: 1;
}

.expertise-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    min-height: 500px;
}

.values-left {
    flex: 1.2;
    padding: 60px;
    background-color: #f9fafb;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f2937;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.values-right {
    flex: 0.8;
    padding: 60px;
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box {
    max-width: 400px;
    text-align: center;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    min-height: 500px;
}

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

.service-detail-left {
    flex: 1;
    position: relative;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.service-detail-right {
    flex: 1;
    padding: 60px;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.service-detail-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-detail-right h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1f2937;
}

.service-detail-right ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-right ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.consultation-cta-split {
    display: flex;
    padding: 60px 40px;
    background-color: #1f2937;
    color: #ffffff;
}

.cta-split-left {
    flex: 1;
    padding-right: 60px;
}

.cta-split-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-split-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #d1d5db;
}

.cta-split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #1f2937;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s;
}

.btn-primary-large:hover {
    background-color: #f3f4f6;
}

.btn-secondary-large {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: 2px solid #ffffff;
    transition: background-color 0.3s;
}

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

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-left {
    flex: 1;
    padding-right: 60px;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2937;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.contact-right {
    flex: 1;
}

.contact-note-box {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

.contact-note-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.contact-note-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.location-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.location-left {
    flex: 1;
    padding-right: 60px;
    display: flex;
    align-items: center;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.location-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.location-right {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.faq-split {
    padding: 80px 40px;
    background-color: #f9fafb;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    color: #111827;
}

.faq-content-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

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

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2937;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.thanks-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f9fafb;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.thanks-service {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1f2937;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #1f2937;
    transition: background-color 0.3s;
}

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

.next-steps-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

.next-steps-header {
    text-align: center;
    margin-bottom: 50px;
}

.next-steps-header h2 {
    font-size: 42px;
    color: #111827;
}

.next-steps-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1f2937;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f2937;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #111827;
}

.legal-updated {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-content a {
    color: #1f2937;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #f9fafb;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.cookies-table th {
    font-weight: 600;
    color: #1f2937;
}

.cookies-table td {
    color: #4b5563;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px;
    }

    .header-right {
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .consultation-split,
    .trust-split,
    .page-hero-split,
    .about-story-split,
    .approach-split,
    .values-split,
    .service-detail-split,
    .consultation-cta-split,
    .contact-info-split,
    .location-split,
    .footer-split,
    .faq-content-split,
    .expertise-split {
        flex-direction: column;
    }

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

    .hero-text h1,
    .page-hero-left h1 {
        font-size: 32px;
    }

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