/* Reset and Base Styles */
* {
    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: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

.btn-cookie-accept:hover {
    background: #1d4ed8;
}

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

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

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    font-weight: 500;
    color: #374151;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 85vh;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: #f9fafb;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.25rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    background: #1f2937;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary,
.cta-primary-large {
    background: #2563eb;
    color: #ffffff;
}

.cta-primary:hover,
.cta-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.cta-text-link {
    color: #2563eb;
    font-weight: 600;
}

.cta-text-link:hover {
    color: #1d4ed8;
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: stretch;
}

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

.split-content,
.split-visual {
    flex: 1;
}

.split-content {
    padding: 5rem 3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.split-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    max-width: 580px;
}

.split-visual {
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.stat-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 2.75rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: 1rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    align-items: stretch;
}

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

.trust-left {
    background: #1f2937;
    overflow: hidden;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-right {
    padding: 5rem 3rem;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.trust-content {
    max-width: 580px;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.trust-points {
    margin: 2rem 0;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-point span:last-child {
    color: #374151;
    font-size: 1.0625rem;
}

/* Testimonials */
.testimonials-split {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.section-header-alt {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-alt h2 {
    font-size: 2.75rem;
    color: #111827;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author strong {
    display: block;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Form Split Section */
.form-split {
    display: flex;
    align-items: stretch;
}

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

.form-left {
    background: #1f2937;
    color: #ffffff;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.form-intro {
    max-width: 500px;
}

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

.form-intro p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

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

.form-benefits li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #e5e7eb;
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: 700;
}

.form-right {
    padding: 5rem 3rem;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.cta-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    align-items: center;
    background: #111827;
    color: #ffffff;
    min-height: 400px;
}

.final-cta-content {
    flex: 1.5;
    padding: 4rem 3rem;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.final-cta-visual {
    flex: 1;
    background: #1f2937;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.urgency-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.urgency-label {
    display: block;
    color: #9ca3af;
    font-size: 1.125rem;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 1.75rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}

.breadcrumb {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: #2563eb;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero-split .hero-left h1 {
    font-size: 2.75rem;
}

.page-hero-split .lead {
    font-size: 1.25rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Story Split */
.story-split {
    display: flex;
    align-items: stretch;
}

.story-content {
    flex: 1.5;
    padding: 5rem 3rem;
    background: #ffffff;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.story-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
}

.story-visual {
    flex: 1;
    background: #f9fafb;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.timeline-event {
    display: block;
    color: #4b5563;
}

/* Values Split */
.values-split {
    display: flex;
    align-items: stretch;
}

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

.values-visual {
    flex: 1;
    background: #1f2937;
    overflow: hidden;
}

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

.values-content {
    flex: 1;
    padding: 5rem 3rem;
    background: #ffffff;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.value-item p {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.team-info {
    padding: 1.75rem;
}

.team-info h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.team-role {
    display: block;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.team-info p {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Stats Split */
.stats-split {
    padding: 6rem 2rem;
    background: #111827;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.stat-large {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-large .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #60a5fa;
    display: block;
    margin-bottom: 0.75rem;
}

.stat-large .stat-label {
    color: #d1d5db;
    font-size: 1.0625rem;
}

/* CTA About */
.cta-about {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.cta-content-centered h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

/* Services Detail */
.services-detail {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: stretch;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.service-detail-left {
    flex: 2;
    padding: 3rem;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: #92400e;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #111827;
    font-weight: 700;
}

.service-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

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

.service-includes li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.625rem;
    color: #4b5563;
}

.service-includes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.service-timeline {
    color: #6b7280;
    font-size: 0.9375rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.service-detail-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.pricing-box {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
}

.price-label {
    display: block;
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.cta-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-pricing:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Payment Terms Split */
.payment-terms-split {
    padding: 6rem 2rem;
    background: #f9fafb;
    display: flex;
    gap: 4rem;
}

.terms-left {
    flex: 1;
}

.terms-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.terms-left p {
    font-size: 1.125rem;
    color: #6b7280;
}

.terms-right {
    flex: 1.5;
}

.payment-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 2rem;
    background: #dbeafe;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #111827;
    font-weight: 700;
}

.guarantee-intro {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.guarantee-icon {
    width: 28px;
    height: 28px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* FAQ Split */
.faq-split {
    padding: 6rem 2rem;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.75rem;
    color: #111827;
    font-weight: 700;
}

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

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #111827;
}

.faq-item p {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Services */
.cta-services {
    padding: 6rem 2rem;
    background: #111827;
}

.cta-services .cta-content-centered h2 {
    color: #ffffff;
}

.cta-services .cta-content-centered p {
    color: #d1d5db;
}

/* Contact Split */
.contact-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-side,
.contact-map-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.contact-info-side > p {
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.0625rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.contact-details p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #2563eb;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.additional-contact-info {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.additional-contact-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.additional-contact-info p {
    color: #6b7280;
    line-height: 1.6;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 1.25rem;
    text-align: center;
}

.quick-contact-box {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.quick-contact-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.quick-contact-box p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Visit Info */
.visit-info {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.visit-content {
    max-width: 1000px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.visit-content > p {
    color: #6b7280;
    font-size: 1.0625rem;
    margin-bottom: 3rem;
}

.visit-details-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.visit-detail {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.visit-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.visit-detail p {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Contact Alternatives */
.contact-alternatives {
    padding: 5rem 2rem;
    background: #ffffff;
}

.alternatives-header {
    text-align: center;
    margin-bottom: 3rem;
}

.alternatives-header h2 {
    font-size: 2.25rem;
    color: #111827;
    font-weight: 700;
}

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

.alternative-option {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.alternative-option h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.alternative-option p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.success-icon {
    color: #10b981;
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.selected-service-display {
    background: #dbeafe;
    color: #1e40af;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    font-weight: 600;
    display: inline-block;
}

.thanks-info-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-info p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.step-timing {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 4px;
    font-size: 0.875rem;
}

.thanks-contact {
    margin: 3rem 0;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.thanks-contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-contact p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.125rem;
    color: #2563eb;
    font-weight: 600;
}

.contact-email:hover {
    text-decoration: underline;
}

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

/* Thanks Resources */
.thanks-resources {
    padding: 5rem 2rem;
    background: #ffffff;
}

.resources-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.resources-header p {
    color: #6b7280;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.last-updated {
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 0.9375rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 600;
}

.legal-content p {
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.legal-content li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

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

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

.legal-content strong {
    color: #111827;
    font-weight: 600;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: #f9fafb;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #111827;
    border-bottom: 2px solid #e5e7eb;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.cookie-table tbody tr:hover {
    background: #f9fafb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .form-split,
    .final-cta-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .contact-split,
    .payment-terms-split {
        flex-direction: column;
    }

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

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

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

    .section-header h2 {
        font-size: 2.25rem;
    }

    .nav-links {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .split-content h2,
    .trust-content h2,
    .form-intro h2 {
        font-size: 2rem;
    }

    .final-cta-content h2 {
        font-size: 2.25rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9375rem;
    }

    .services-grid-split,
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.625rem;
    }

    .cta-primary-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

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

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