/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    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;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #1d4ed8;
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.cta-large {
    display: inline-block;
    padding: 20px 40px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.link-arrow {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    margin-top: 16px;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    background: #f8fafc;
}

.indicator-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.indicator-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.indicator-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.indicator-label {
    font-size: 1rem;
    color: #64748b;
}

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

.value-visual {
    flex: 1;
    overflow: hidden;
}

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

.value-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.value-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #f8fafc;
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #64748b;
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #2563eb;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    margin-bottom: 20px;
    color: #2563eb;
}

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

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
}

.service-link:hover {
    background: #1d4ed8;
}

/* Process Split */
.process-split {
    display: flex;
    align-items: stretch;
}

.process-content {
    flex: 1;
    padding: 80px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

.process-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #1a1a1a;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* CTA Split */
.cta-split {
    display: flex;
    align-items: stretch;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-content {
    flex: 1;
    padding: 80px 60px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-content .cta-large {
    background: #ffffff;
    color: #2563eb;
    align-self: flex-start;
}

.cta-content .cta-large:hover {
    background: #f8fafc;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: #f8fafc;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.consultation-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    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;
}

.checkbox-group label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #1d4ed8;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2563eb;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #cbd5e1;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

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

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.sticky-cta a:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero .hero-lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.page-hero-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.page-hero-content {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #ffffff;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

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

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

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

.values-content {
    flex: 1;
    padding: 80px 60px;
    background: #f8fafc;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    display: block;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

/* Approach Split */
.approach-split {
    display: flex;
    align-items: stretch;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.approach-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* CTA Fullwidth */
.cta-fullwidth {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-fullwidth h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-fullwidth p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

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

.cta-fullwidth .cta-large:hover {
    background: #f8fafc;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-card.featured-service {
    border: 3px solid #2563eb;
    position: relative;
}

.featured-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-detail-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.comparison-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.comparison-card p {
    color: #64748b;
    margin-bottom: 16px;
}

.comparison-arrow {
    font-size: 2rem;
    color: #2563eb;
    margin: 16px 0;
}

.comparison-card strong {
    color: #2563eb;
    font-size: 1.1rem;
}

/* Process Overview */
.process-overview {
    padding: 80px 0;
    background: #ffffff;
}

.process-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
}

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

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

/* Contact Split */
.contact-split {
    display: flex;
    min-height: 700px;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: #f8fafc;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-block a {
    color: #2563eb;
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.6;
}

/* Team Contact */
.team-contact {
    padding: 80px 0;
    background: #ffffff;
}

.team-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.team-contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-contact-card {
    flex: 1;
    min-width: 250px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.team-contact-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-role {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.team-specialty {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-contact-card a {
    color: #2563eb;
    font-size: 0.95rem;
}

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

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.quick-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.quick-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-link-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.quick-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.quick-link-card p {
    color: #64748b;
    margin-bottom: 16px;
}

.quick-link-card .link-arrow {
    font-size: 1.5rem;
    color: #2563eb;
}

/* FAQ Contact */
.faq-contact {
    padding: 80px 0;
    background: #ffffff;
}

.faq-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Thanks Section */
.thanks-section {
    padding: 100px 0;
    background: #f8fafc;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: #10b981;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-info {
    margin-bottom: 40px;
}

.selected-service {
    background: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    color: #1e40af;
    font-size: 1.1rem;
}

.next-steps {
    text-align: left;
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    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.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-tips {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    margin: 40px 0;
}

.thanks-tips h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-tips p {
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-tips ul {
    list-style: disc;
    padding-left: 30px;
}

.thanks-tips li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Thanks Resources */
.thanks-resources {
    padding: 80px 0;
    background: #ffffff;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.resource-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.resource-card p {
    color: #64748b;
    margin-bottom: 16px;
}

.resource-card .link-arrow {
    font-size: 1.5rem;
    color: #2563eb;
}

/* Legal Page */
.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.legal-updated {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-style: italic;
}

.cookie-table {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.cookie-item {
    margin-bottom: 20px;
}

.cookie-item:last-child {
    margin-bottom: 0;
}

.cookie-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cookie-item p {
    margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-cta {
        margin-top: 10px;
    }

    .hero-split,
    .value-split,
    .process-split,
    .cta-split,
    .page-hero-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .value-content,
    .process-content,
    .cta-content,
    .page-hero-content,
    .values-content,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 20px;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .value-content h2,
    .process-content h2,
    .cta-content h2,
    .values-content h2,
    .approach-content h2 {
        font-size: 1.8rem;
    }

    .indicator-grid,
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .services-split-grid,
    .testimonial-grid,
    .team-grid,
    .comparison-grid,
    .team-contact-grid,
    .quick-links,
    .resource-grid {
        flex-direction: column;
    }

    .consultation-form {
        padding: 30px 20px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

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

    .section-header-centered h2,
    .testimonials h2,
    .team-section h2,
    .cta-fullwidth h2,
    .comparison-section h2,
    .process-overview h2,
    .faq-section h2,
    .team-contact h2,
    .quick-contact h2,
    .faq-contact h2,
    .thanks-resources h2 {
        font-size: 1.8rem;
    }

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

    .timeline-item {
        gap: 15px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
