/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-primary {
    background: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Floating Navigation - Asymmetric */
.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    list-style: none;
    display: none;
    gap: 1.5rem;
}

.nav-links li a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3498db;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 90vh;
    padding: 8rem 1.5rem 4rem;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text-block {
    max-width: 600px;
    margin-left: 5%;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 2rem;
}

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

.cta-hero:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    margin-right: 5%;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Intro Offset Section */
.intro-offset {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
}

.intro-visual-side {
    width: 80%;
    margin-left: 10%;
    border-radius: 8px;
    overflow: hidden;
}

/* Problem Amplify */
.problem-amplify {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-card.offset-top {
    margin-left: 5%;
}

.problem-card.offset-bottom {
    margin-right: 5%;
}

.problem-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 1.5rem;
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-image-overlap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.insight-text-block {
    max-width: 700px;
}

.insight-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.insight-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.cta-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
}

.cta-inline:hover {
    background: #2980b9;
}

/* Services Showcase - Asymmetric Grid */
.services-showcase {
    padding: 6rem 1.5rem;
    background: #fafbfc;
}

.services-header-offset {
    max-width: 800px;
    margin: 0 0 4rem 5%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #555;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card.elevated {
    margin-left: 8%;
}

.service-card.staggered {
    margin-right: 8%;
}

.service-card.elevated-high {
    margin-left: 12%;
}

.service-card.offset-right {
    margin-right: 10%;
}

.service-card.inline-narrow {
    margin-left: 5%;
}

.service-card.elevated-mid {
    margin-right: 6%;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

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

.btn-service:hover {
    background: #34495e;
}

/* Testimonial Scattered */
.testimonial-scattered {
    padding: 6rem 1.5rem;
    background: #fff;
}

.testimonial-block {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.testimonial-block.left-float {
    margin-left: 5%;
}

.testimonial-block.right-offset {
    margin-right: 5%;
}

.testimonial-block.center-elevated {
    margin-top: 4rem;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

/* Process Unconventional */
.process-unconventional {
    padding: 6rem 1.5rem;
    background: #2c3e50;
    color: #fff;
}

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

.process-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.process-steps-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.step-card.offset-up {
    margin-left: 10%;
}

.step-card.offset-down {
    margin-right: 10%;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Trust Elements Scattered */
.trust-elements-scattered {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

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

.trust-stat {
    text-align: center;
    padding: 2rem;
}

.trust-stat.offset-vertical {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.trust-stat h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-stat p {
    font-size: 1.1rem;
    color: #555;
}

/* Form Section Asymmetric */
.form-section-asymmetric {
    padding: 6rem 1.5rem;
    background: #fff;
}

.form-intro-offset {
    max-width: 700px;
    margin: 0 0 3rem 5%;
}

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

.form-intro-offset p {
    font-size: 1.15rem;
    color: #555;
}

.form-wrapper-elevated {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    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: #3498db;
}

.btn-submit {
    padding: 1.2rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

/* Final CTA Unconventional */
.final-cta-unconventional {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

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

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

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

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #2c3e50;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Offset */
.footer-offset {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-col p {
    color: #ccc;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

/* About Page Styles */
.page-hero-about {
    padding: 8rem 1.5rem 4rem;
    background: #f8f9fa;
}

.hero-content-offset {
    max-width: 900px;
    margin: 0 auto 0 5%;
}

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

.hero-content-offset p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
}

.about-origin {
    padding: 5rem 1.5rem;
}

.origin-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.origin-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.origin-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.origin-image-stack {
    border-radius: 12px;
    overflow: hidden;
}

.philosophy-section {
    padding: 6rem 1.5rem;
    background: #2c3e50;
    color: #fff;
}

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

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

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

.philosophy-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
}

.philosophy-card.elevated {
    margin-left: 8%;
}

.philosophy-card.elevated-high {
    margin-right: 8%;
}

.philosophy-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.team-asymmetric {
    padding: 6rem 1.5rem;
}

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

.team-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
}

.team-layout-scattered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.team-member.offset-down {
    margin-top: 2rem;
}

.team-member.offset-up {
    margin-bottom: 2rem;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.member-info {
    text-align: center;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.values-offset {
    padding: 6rem 1.5rem;
    background: #f8f9fa;
}

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

.values-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.values-list-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item.offset {
    margin-left: 8%;
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.cta-about {
    padding: 6rem 1.5rem;
    background: #3498db;
    color: #fff;
}

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

.cta-content-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #3498db;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Services Page Styles */
.page-hero-services {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-services-offset {
    max-width: 900px;
    margin: 0 auto 0 5%;
}

.hero-services-offset h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-services-offset p {
    font-size: 1.3rem;
    color: #555;
}

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

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-block.right-align {
    flex-direction: column;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.timeline-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin: 1rem 0;
}

.btn-service-detail {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: #34495e;
}

.service-approach {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

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

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.approach-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.services-cta-offset {
    padding: 6rem 1.5rem;
    background: #2c3e50;
    color: #fff;
}

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

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

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

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 1.5rem 4rem;
    background: #f8f9fa;
}

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

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

.contact-hero-content p {
    font-size: 1.3rem;
    color: #555;
}

.contact-info-section {
    padding: 5rem 1.5rem;
}

.contact-details-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-block.elevated {
    margin-left: 5%;
}

.contact-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: #3498db;
}

.contact-note {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.contact-note.offset-down {
    margin-right: 5%;
}

.contact-note h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.contact-hours-extended {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

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

.hours-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hours-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.location-info {
    padding: 5rem 1.5rem;
}

.location-content-offset {
    max-width: 900px;
    margin: 0 auto 0 5%;
}

.location-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-content-offset p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
}

.cta-final-contact {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-contact h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

/* Thanks Page Styles */
.thanks-hero {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
}

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

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

.thanks-main {
    font-size: 1.3rem;
}

.thanks-details {
    padding: 5rem 1.5rem;
}

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

.thanks-block {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.thanks-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-list {
    list-style: none;
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.thanks-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #444;
}

.thanks-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
}

.thanks-service-confirmation {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-left: 5%;
}

.thanks-service-confirmation h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-service-confirmation p {
    font-size: 1.1rem;
    color: #555;
}

.thanks-timeline {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

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

.timeline-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.timeline-step {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.timeline-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.timeline-step p {
    font-size: 1.05rem;
    color: #555;
}

.thanks-meanwhile {
    padding: 5rem 1.5rem;
}

.meanwhile-content-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
}

.meanwhile-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.meanwhile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meanwhile-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
}

.meanwhile-card.offset {
    margin-left: 8%;
}

.meanwhile-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.meanwhile-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-contact-backup {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

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

.backup-contact h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.backup-contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-page-hero {
    padding: 8rem 1.5rem 3rem;
    background: #f8f9fa;
}

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

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-updated {
    font-size: 1rem;
    color: #777;
}

.legal-content {
    padding: 4rem 1.5rem;
}

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

.legal-wrapper h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-wrapper h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.legal-wrapper ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-wrapper ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.7rem;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
    }

    .nav-toggle {
        display: none;
    }

    .hero-offset {
        flex-direction: row;
        align-items: center;
    }

    .hero-visual {
        flex: 1;
    }

    .intro-offset {
        flex-direction: row;
        align-items: center;
    }

    .intro-visual-side {
        width: 40%;
        margin-left: 0;
    }

    .problem-grid {
        flex-direction: row;
    }

    .insight-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .insight-image-overlap {
        flex: 1;
    }

    .services-asymmetric-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .trust-wrapper {
        flex-direction: row;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .origin-layout {
        flex-direction: row;
        align-items: center;
    }

    .origin-text {
        flex: 1;
    }

    .origin-image-stack {
        flex: 1;
    }

    .philosophy-grid-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .team-layout-scattered {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .service-detail-block.left-align {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-block.right-align {
        flex-direction: row-reverse;
        align-items: center;
    }

    .service-detail-image {
        flex: 1;
    }

    .service-detail-content {
        flex: 1;
    }

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

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

    .contact-details-asymmetric {
        flex-direction: row;
    }

    .contact-block {
        flex: 1;
    }

    .contact-note {
        flex: 1;
    }

    .meanwhile-links {
        flex-direction: row;
    }

    .meanwhile-card {
        flex: 1;
    }

    .timeline-steps {
        flex-direction: row;
    }

    .timeline-step {
        flex: 1;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .services-asymmetric-grid {
        flex-direction: row;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 2rem);
    }

    .process-steps-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .philosophy-grid-offset {
        flex-direction: row;
    }

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

    .values-list-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

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