/* 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', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

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

.hero-left {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9fafb;
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

/* Trust Bar */
.trust-bar {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem;
}

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

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

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 1rem;
    color: #d1d5db;
}

/* Split Container Pattern */
.split-container {
    display: flex;
    flex-direction: column;
}

.split-image {
    order: -1;
}

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

.split-text {
    padding: 4rem 2rem;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: #ffffff;
}

/* Insight Section */
.insight-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

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

.insight-card p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-block {
    display: flex;
    flex-direction: column;
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    padding: 2rem 0;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-details p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

/* Testimonial Section */
.testimonial-section {
    background: #1f2937;
    color: #ffffff;
    padding: 5rem 2rem;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    border-left: 4px solid #60a5fa;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial footer {
    color: #9ca3af;
    font-size: 1rem;
}

/* Form Section */
.form-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

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

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #6b7280;
}

.consultation-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #2563eb;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2563eb;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-text {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page */
.about-story {
    padding: 5rem 0;
}

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

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.philosophy-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.philosophy-item p {
    color: #6b7280;
    line-height: 1.7;
}

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

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.step-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #6b7280;
    line-height: 1.7;
}

.team-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.team-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-wrapper p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Services Page */
.services-detail {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    background: #f9fafb;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.service-detail-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-description h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-description h3:first-child {
    margin-top: 0;
}

.service-description p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-description ul {
    list-style: none;
    padding-left: 0;
}

.service-description ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.service-description ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-image {
    order: -1;
}

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

.service-detail-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    margin: 0 2rem 2rem;
    transition: all 0.3s ease;
}

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

.services-faq {
    background: #f9fafb;
    padding: 5rem 2rem;
}

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

.faq-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

.cta-services {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-detail p {
    color: #6b7280;
    line-height: 1.7;
}

.contact-detail a {
    color: #2563eb;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #1d4ed8;
}

.contact-note {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: #4b5563;
    line-height: 1.7;
}

.contact-image {
    margin-top: 2rem;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-map {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-wrapper p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
}

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

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

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

.thanks-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

.step-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    flex-shrink: 0;
    background: #eff6ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #6b7280;
    line-height: 1.7;
}

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

.thanks-testimonial {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-box blockquote {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-box blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-box blockquote footer {
    color: #6b7280;
    font-size: 1rem;
}

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

.legal-container p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-container ul li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: #2563eb;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

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

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

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

    .hero-right {
        min-height: auto;
    }

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

    .split-container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .split-image,
    .split-text {
        flex: 1;
    }

    .split-image {
        order: 0;
    }

    .split-image img {
        height: 100%;
        min-height: 400px;
    }

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-block {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .service-block.reverse {
        flex-direction: row-reverse;
    }

    .service-visual,
    .service-details {
        flex: 1;
    }

    .service-visual img {
        height: 100%;
        min-height: 300px;
    }

    .testimonial-container {
        flex-direction: row;
    }

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

    .footer-column {
        flex: 1;
    }

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

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

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .service-detail-body {
        flex-direction: row;
    }

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

    .service-image {
        order: 0;
    }

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

    .contact-split {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }

    .contact-info,
    .contact-image {
        flex: 1;
    }

    .contact-image {
        margin-top: 0;
    }

    .next-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-left h1 {
        font-size: 3.5rem;
    }

    .insight-grid {
        flex-wrap: nowrap;
    }

    .insight-card {
        flex: 1;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .approach-steps {
        flex-wrap: nowrap;
    }

    .step-card {
        flex: 1;
    }

    .philosophy-list {
        flex-wrap: nowrap;
    }

    .philosophy-item {
        flex: 1;
    }

    .next-steps {
        flex-wrap: nowrap;
    }

    .step {
        flex: 1;
    }
}