@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #0b2559;
    /* Prestigious Imperial Royal Navy Blue */
    --primary-light: #f0f4f8;
    /* Sophisticated slate blue-gray */
    --primary-dark: #061637;
    /* Deepest Royal Navy */
    --secondary-color: #ffffff;
    --accent-color: #d1b46a;
    /* Radiant Royal Gold */
    --text-main: #0b2559;
    /* Deep navy for strong, colorful branding text */
    --text-body: #334155;
    /* Rich slate gray body text */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px rgba(11, 37, 89, 0.08);
    /* High-end navy-tinted shadow */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Utility: Mobile-only Line Break */
.mo-br {
    display: none;
}

@media (max-width: 992px) {
    .mo-br {
        display: inline;
    }
}

body {
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Nanum Myeongjo', serif;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    min-height: 70px;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
}

header.scrolled .logo {
    color: var(--primary-dark);
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    filter: invert(1);
    transition: filter 0.3s;
}

header.scrolled .logo img {
    filter: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

header.scrolled .mobile-menu-btn {
    color: var(--primary-dark);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

header.scrolled nav a {
    color: #333;
}

nav a:hover,
header.scrolled nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-character {
    display: none;
    /* Hide in hero as it moves to its own section */
}

.hero-character img {
    height: 70%;
    /* As per user's preference */
    width: auto;
    object-fit: contain;
}

.hero-lawyer-info {
    margin-left: 20px;
    /* Space between image and box */
    margin-bottom: 20px;
    /* Space from the bottom */
    z-index: 4;
    width: 250px;
    animation: fadeIn 0.8s ease-out 0.5s both;
    text-shadow:
        0px 0px 6px rgba(255, 255, 255, 1),
        0px 0px 12px rgba(255, 255, 255, 0.9),
        0px 0px 20px rgba(255, 255, 255, 0.8),
        1px 1px 0px rgba(255, 255, 255, 1),
        -1px -1px 0px rgba(255, 255, 255, 1);
}

.lawyer-title {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.lawyer-title .position {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Nanum Myeongjo', serif;
    margin-bottom: 3px;
}

.lawyer-title .name {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.lawyer-history {
    list-style: none;
}

.lawyer-history li {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.lawyer-history li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.lawyer-history li strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    text-align: center;
    /* Center text */
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(25, 65, 133, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero h1 span {
    color: var(--accent-color);
    display: block;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Lawyer Intro Section (New) */
.lawyer-intro {
    padding: 20px 10% 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)), url('lawyer_bg_prestigious_korea.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
}

@media (min-width: 1400px) {
    .lawyer-intro {
        padding-left: calc((100% - 1200px) / 2);
        padding-right: calc((100% - 1200px) / 2);
    }
}

.lawyer-intro-image {
    position: relative;
    align-self: flex-end;
    display: flex;
    justify-content: center;
}

.lawyer-intro-image img {
    max-width: 60%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

.lawyer-intro-content {
    text-align: left;
    padding: 10px 0;
    margin-bottom: 15px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.lawyer-intro-title {
    margin-bottom: 12px;
    position: relative;
}

.lawyer-intro-title h2 {
    font-size: 3rem;
    font-family: 'Nanum Myeongjo', serif;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: -2px;
}

.lawyer-intro-title .intro-name {
    font-size: 1.5rem;
    color: #555;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lawyer-intro-title .intro-name::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #ccc;
}

.lawyer-intro-tagline {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 2px solid var(--primary-color);
}

.lawyer-intro-history {
    list-style: none;
    padding-left: 0;
}

.lawyer-intro-history li {
    font-size: 1.12rem;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lawyer-intro-history li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.lawyer-intro-history li strong {
    color: var(--primary-dark);
    font-weight: 700;
}

@media (max-width: 992px) {
    .hero {
        height: 100svh;
        min-height: 500px;
        padding-top: 70px;
        /* Offset for header */
    }

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

    .lawyer-intro {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        /* Image left, Text right */
        gap: 15px;
        padding: 40px 5% 0;
        /* Minimized padding, no bottom padding */
        align-items: flex-end;
        /* Ensure image sits perfectly flush at bottom */
    }

    .lawyer-intro-content {
        order: 2;
        /* Text on right */
        padding: 0 0 20px 0;
        /* A little bottom padding so text doesn't touch the floor */
        text-align: left;
        width: 100%;
        margin-bottom: 0;
        box-shadow: none;
        /* Remove PC styles */
        border: none;
        background: transparent;
    }

    .lawyer-intro-image {
        order: 1;
        /* Image on left */
        justify-content: flex-start;
        width: 100%;
        align-self: flex-end;
    }

    .lawyer-intro-image img {
        max-width: 90%;
        max-height: 300px;
        object-fit: contain;
        margin: 0;
        display: block;
    }

    .lawyer-intro-title {
        margin-bottom: 10px;
    }

    .lawyer-intro-title h2 {
        font-size: 1.4rem;
        /* Tiny title for side-by-side */
        margin-bottom: 2px;
    }

    .lawyer-intro-title .intro-name {
        font-size: 0.85rem;
        justify-content: flex-start;
        /* Left align */
        gap: 8px;
    }

    .lawyer-intro-tagline {
        font-size: 0.85rem;
        border-left: none;
        border-top: none;
        padding-left: 0;
        padding-top: 0;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .lawyer-intro-history {
        display: block;
        text-align: left;
    }

    .lawyer-intro-history li {
        font-size: 0.7rem;
        /* Extremely small text */
        margin-bottom: 4px;
        gap: 6px;
    }

    .lawyer-intro-history li::before {
        font-size: 0.65rem;
    }
}

/* Section Common */
section {
    padding: 60px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title p {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Principles */
.principles {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.principle-card {
    padding: 50px 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--accent-color);
}

.principle-card h3 {
    color: #fff;
}

.principle-card p {
    color: rgba(255, 255, 255, 0.8);
}

.principle-card .icon i {
    color: var(--accent-color);
}

.principle-card:hover {
    border-color: var(--primary-light);
}

.principle-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Work Field */
.work-field {
    background: var(--secondary-color);
}

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

.service-header span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.service-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.service-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.service-card.rehabilitation {
    background: url('service_rehabilitation_korea.png') center/cover;
}

.service-card.bankruptcy {
    background: url('service_bankruptcy_korea.png') center/cover;
}

.service-card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.service-card-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.detail-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.service-card:hover .service-card-content h3,
.service-card:hover .detail-btn {
    color: var(--accent-color);
}

/* Stats */
.stats-section {
    background: var(--primary-dark);
    padding: 50px 10%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Business Case Slider (Light & Draggable) */
.reviews {
    background: #fdfdfd;
    padding: 60px 0;
    overflow: hidden;
}

.reviews-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* Part 1: System Introduction Block */
.system-introduction-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.system-text-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-top: 12px;
}

.system-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.system-text-panel h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.35;
    margin-bottom: 20px;
    font-family: 'Nanum Myeongjo', serif;
}

.accent-text {
    color: var(--accent-color);
}

.system-quote {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 18px;
    border-left: 3px solid var(--accent-color);
    padding-left: 12px;
    text-align: left;
}

.system-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

/* Flowchart block */
.system-flowchart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #f8fafc;
    padding: 38px 30px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.flow-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    margin-bottom: 15px;
    transition: var(--transition);
}

.flow-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.flow-num {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 4px;
}

.flow-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
}

.flow-arrow {
    font-size: 1.2rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

/* Part 2: Cases Carousel section wrapper */
.cases-carousel-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cases-sub-header {
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.cases-sub-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cases-sub-title i {
    color: var(--accent-color);
}

.slider-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.reviews-slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.cases-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cases-column .review-card {
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    cursor: grab;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.reviews-track:active {
    cursor: grabbing;
}

.review-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid #eef2f6;
    overflow: hidden;
    padding: 0;
}

.review-image {
    width: 100%;
    height: 102px;
    overflow: hidden;
    pointer-events: none;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.review-banner {
    background: #1e3a68;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
}

.review-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px 6px;
    background: #fff;
    gap: 15px;
}

.comp-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1.2;
}

.comp-col div {
    display: flex;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
}

.comp-col.before {
    color: #64748b;
}

.comp-col.after {
    color: #1e40af;
}

.comp-col .amount {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.comp-col .unit {
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 2px;
}

.comp-col.before .unit {
    color: #64748b;
}

.comp-col.after .unit {
    color: #1e40af;
}

.comp-col .label {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 600;
    white-space: nowrap;
}

.comp-col.after .label {
    color: #1e40af;
}

.comp-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1.5;
}

.comp-arrow .arrow-text {
    font-size: 0.72rem;
    color: #9f7d56;
    font-weight: 700;
    white-space: nowrap;
}

.comp-arrow .arrow-icon-css {
    position: relative;
    width: 65px;
    height: 10px;
    background: #9f7d56;
    margin: 5px 0;
}

.comp-arrow .arrow-icon-css::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 2px;
    height: 10px;
    background: #9f7d56;
}

.comp-arrow .arrow-icon-css::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -5px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #9f7d56;
}

.review-caption {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
    padding: 0 25px 10px;
    background: #fff;
    font-weight: 500;
    letter-spacing: -0.3px;
    border-top: 1px dashed #f1f5f9;
    padding-top: 8px;
    margin: 0 25px;
}

/* Hide navigation parts as requested */
.slider-dots,
.slider-controls {
    display: none !important;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 300px;
        padding: 0;
    }
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .reviews-slider-container {
        padding: 0 20px;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .slider-controls {
        display: none;
    }
}

/* Consultation Form */
.consultation-form {
    background: var(--secondary-color);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
    color: var(--accent-color);
}

/* Self Diagnosis Section */
.self-diagnosis-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.self-diagnosis-section .section-title {
    margin-bottom: 35px;
}

.self-diagnosis-section .section-title h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.35;
    word-break: keep-all;
}

.self-diagnosis-section .section-title h2 .title-desc {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: #475569;
    margin-top: 10px;
    word-break: keep-all;
}

.self-diagnosis-section .section-title .subtitle {
    display: block;
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 12px;
    font-weight: 500;
}

.self-diagnosis-section .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.agreement-group {
    margin-top: 15px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.diagnosis-submit-btn {
    width: 100%;
    padding: 18px;
    background: #475569;
    /* Charcoal grey background to match user's template */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.diagnosis-submit-btn:hover {
    background: var(--primary-dark);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .self-diagnosis-section {
        padding: 40px 15px;
    }

    .self-diagnosis-section .form-container {
        padding: 20px 15px;
        border-top-width: 3px;
    }

    .self-diagnosis-section .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
        margin-bottom: 12px;
    }

    .self-diagnosis-section .form-grid .form-group:last-child {
        grid-column: span 2;
    }

    .self-diagnosis-section .form-group {
        margin-bottom: 12px;
    }

    .self-diagnosis-section .form-group label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .self-diagnosis-section .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
        height: auto;
    }

    .self-diagnosis-section .agreement-group {
        margin-top: 8px;
        margin-bottom: 15px;
    }

    .self-diagnosis-section .checkbox-label {
        font-size: 0.85rem;
    }

    .self-diagnosis-section .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .self-diagnosis-section .diagnosis-submit-btn {
        padding: 14px;
        font-size: 1rem;
    }

    .self-diagnosis-section .section-title h2 {
        font-size: 1.65rem;
    }

    .self-diagnosis-section .section-title h2 .title-desc {
        font-size: 1.05rem;
        margin-top: 6px;
    }
}

/* Map */
.map-section {
    padding: 0 0 50px;
    /* Margin bottom */
}

.map-container {
    height: 450px;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-address-box {
    width: 85%;
    max-width: 1200px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.address-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
    background: #fcf8f2;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.address-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.address-details p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .map-address-box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        width: 90%;
        margin-top: 20px;
    }
    
    .map-container {
        width: 90%;
        height: 300px;
    }
}

/* Page Hero (Detail Pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a6b 100%);
    padding: 90px 10% 60px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs Navigation */
.tabs-nav-container {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-btn {
    padding: 25px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

/* Services Main */
.services-main {
    min-height: 60vh;
    /* Will be adjusted by flex if needed */
    padding: 80px 10%;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.tab-content-box {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content-box.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-detail-title i {
    font-size: 2.5rem;
}

/* Footer (Premium Dark Design) */
footer {
    background: #0a111a;
    /* Deepest Navy */
    color: #a0aec0;
    padding: 80px 10% 30px;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    text-decoration: none;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    list-style: none;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    section {
        padding: 50px 5%;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .service-header {
        margin-bottom: 25px;
    }

    header {
        padding: 0.8rem 5%;
        min-height: 60px;
    }

    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }

    .logo img {
        height: 32px;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Mobile nav overrides removed to avoid conflict with header.html premium drawer */

    .hero {
        height: 100svh;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 70px 20px 0;
        overflow: hidden;
    }

    .hero-bg {
        opacity: 0.4;
    }

    .hero-content {
        position: relative;
        right: auto;
        left: auto;
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
        z-index: 10;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-content .hero-tag {
        font-size: 1.05rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        /* Slightly smaller */
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .hero-content .submit-btn {
        padding: 12px 30px !important;
        /* Smaller button for mobile */
        font-size: 0.9rem !important;
    }

    .hero-character {
        position: relative;
        left: auto;
        bottom: 0;
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        /* Info Left, Image Right as per reference */
        align-items: flex-end;
        justify-content: space-between;
        gap: 0;
        z-index: 5;
        padding: 0;
        margin-top: auto;
    }

    .hero-character img {
        height: 320px;
        /* Larger image like reference */
        width: auto;
        object-fit: contain;
        margin-right: -10%;
        /* Slight overlap/offset */
    }

    .hero-lawyer-info {
        position: relative;
        margin: 0;
        flex: 1;
        z-index: 6;
        padding-bottom: 20px;
    }

    .hero-lawyer-info .lawyer-title {
        margin-bottom: 10px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-lawyer-info .lawyer-title .position {
        font-size: 0.9rem;
        display: inline;
        margin-left: 5px;
        color: #666;
    }

    .hero-lawyer-info .lawyer-title .name {
        font-size: 1.3rem;
        display: inline;
        color: var(--accent-color);
        /* Golden color like reference */
        font-weight: 800;
    }

    .hero-lawyer-info .lawyer-history li {
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 1.4;
        margin-bottom: 3px;
        white-space: normal;
        /* Allow wrap for long lines in small space */
        color: #333;
    }

    .section-title h2,
    .service-header h2 {
        font-size: 1.76rem;
        /* 88% of mobile 2rem */
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .service-cards-container {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 20px;
    }

    .service-card {
        height: 250px;
        padding: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .service-card::before {
        background: rgba(0, 0, 0, 0.6);
        /* Even dark overlay */
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .detail-btn {
        font-size: 0.8rem;
        display: inline-block;
        border: 1px solid #fff;
        padding: 10px 25px;
        margin-top: 0;
        background: transparent;
        color: #fff;
    }

    .detail-btn i {
        margin-left: 10px;
        font-size: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    .map-container {
        width: 90%;
        margin: 0 auto 50px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    /* Page Hero & Tabs Fix for Mobile */
    .page-hero {
        margin-top: 60px;
        padding: 60px 5% 40px;
    }

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

    .tabs-nav-container {
        top: 60px;
        /* Match mobile header height */
    }

    .tab-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .services-main {
        padding: 40px 5%;
    }

    /* Reviews Mobile Fix */
    .reviews {
        padding: 60px 0;
    }

    .reviews-container {
        flex-direction: column;
        padding: 0 5%;
        gap: 30px;
    }

    .reviews .section-title {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .reviews .section-title h2 {
        font-size: 1.76rem;
        margin-bottom: 10px;
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .slider-nav {
        justify-content: center;
        margin-bottom: 10px;
    }

    .reviews-slider-container {
        width: 100%;
        overflow: visible;
        /* Show edge of next card on mobile */
        padding-bottom: 20px;
    }

    .reviews-track {
        gap: 15px;
    }

    .review-card {
        flex: 0 0 280px;
        /* Specific width for mobile */
        padding: 25px;
    }

    /* Detail Page Mobile Refinements */
    .detail-hero h1 {
        font-size: 1.8rem !important;
    }

    .detail-content {
        padding: 40px 6%;
    }

    .detail-section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .qualification-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2x2 grid */
        gap: 12px;
    }

    .qual-item {
        background: #fff;
        border: 1px solid #eee;
        padding: 20px 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    }

    .qual-item .icon {
        font-size: 2rem !important;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .qual-item p {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }

    .benefit-grid {
        grid-template-columns: 1fr !important;
        /* Single column for list feel */
        gap: 10px;
    }

    .benefit-item {
        font-size: 0.85rem !important;
        padding: 12px 15px;
    }

    /* Process Flow - 4x2 Grid for Mobile */
    .process-flow-horizontal {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        /* 4 items per row */
        gap: 15px 5px;
        /* Tight horizontal gap, loose vertical */
        padding: 20px 0 !important;
        overflow: visible !important;
    }

    .process-step-h {
        flex: none;
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .step-circle {
        width: 65px !important;
        height: 65px !important;
        border-width: 1px !important;
        padding: 5px;
    }

    .step-circle span {
        font-size: 0.5rem !important;
        margin-bottom: 2px;
    }

    .step-circle p {
        font-size: 0.65rem !important;
        line-height: 1.2;
    }

    .step-arrow-h {
        display: none;
        /* Hide arrows in grid to save space */
    }

    .step-arrow-v {
        display: none;
    }

    /* Service Page Content Mobile */
    .service-detail-title {
        font-size: 1.5rem;
        gap: 12px;
        margin-bottom: 20px;
    }

    .service-detail-title i {
        font-size: 1.8rem;
    }

    .tab-content-box p {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }

    .tab-content-box ul li {
        font-size: 0.85rem;
    }

    /* Footer Modern Grid Redesign Mobile - Tighter version */
    footer {
        padding: 35px 6% 20px;
        /* Reduced padding */
        background: #080d14;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 20px;
        /* Reduced gap */
        margin-bottom: 25px;
        /* Reduced margin */
    }

    .footer-brand {
        grid-column: span 2;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
        /* Reduced padding */
        margin-bottom: 5px;
    }

    .footer-brand .footer-logo {
        font-size: 1.15rem;
        margin-bottom: 8px;
        /* Reduced margin */
    }

    .footer-brand .footer-logo img {
        height: 28px;
        margin-right: 8px;
    }

    .footer-brand p {
        font-size: 0.78rem;
        line-height: 1.5;
        color: #718096;
    }

    .footer-heading {
        font-size: 0.85rem;
        color: var(--accent-color);
        margin-bottom: 10px;
        /* Reduced margin */
        font-weight: 700;
    }

    .footer-links ul li {
        margin-bottom: 6px;
        /* Tighter list */
    }

    .footer-links ul li a {
        font-size: 0.8rem;
        color: #cbd5e1;
    }

    .footer-contact ul li {
        display: flex;
        gap: 8px;
        margin-bottom: 10px;
        /* Reduced margin */
    }

    .footer-contact ul li i {
        font-size: 0.75rem;
        margin-top: 3px;
    }

    .footer-contact ul li strong {
        font-size: 0.75rem;
        color: #fff;
    }

    .footer-contact ul li div {
        font-size: 0.75rem;
        line-height: 1.3;
        color: #94a3b8;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 15px;
        /* Reduced padding */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-copyright {
        font-size: 0.65rem;
        color: #4a5568;
    }
}

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

    header {
        padding: 0.8rem 3%;
    }

    .logo {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 0.5rem;
    }
}

/* Detail Page Specifics */
.detail-section-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.qual-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
}

/* Process Flow */
.process-flow-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    padding: 40px 0;
}

.process-step-h {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.step-arrow-h {
    position: absolute;
    top: 40px;
    right: -10px;
    color: var(--primary-color);
}

.process-step-h:nth-child(4n) .step-arrow-h {
    display: none;
}

.step-arrow-v {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
}

/* Services Tabs */
.tabs-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content-box {
    display: none;
    padding: 40px 0;
}

.tab-content-box.active {
    display: block;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: none;
    z-index: 1000;
    transition: var(--transition);
}

.back-to-top.active {
    display: block;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries for New Debt Adjustment Flowchart */
@media (max-width: 991px) {
    .reviews-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .system-introduction-column {
        height: auto;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .reviews-container-new {
        gap: 40px;
    }

    .system-text-panel h2 {
        font-size: 1.8rem;
    }

    .system-quote {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .system-description {
        font-size: 0.85rem;
    }

    .system-flowchart {
        flex-direction: row;
        gap: 4px;
        padding: 20px 8px;
        justify-content: space-between;
    }

    .flow-step {
        flex: 1;
        width: auto;
    }

    .flow-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 6px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
        border-width: 1px;
    }

    .flow-icon i {
        font-size: 0.95rem;
    }

    .flow-num {
        font-size: 0.55rem;
        margin-bottom: 2px;
    }

    .flow-label {
        font-size: 0.7rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .flow-arrow {
        transform: rotate(0deg);
        margin: 0;
        font-size: 0.65rem;
        color: var(--accent-color);
    }

    .cases-column {
        max-width: 400px;
        margin: 0 auto;
        gap: 25px;
        width: 100%;
    }

    .cases-column .review-card {
        max-width: 100%;
    }

    /* Scale review cards to 70% font-sizes and compact paddings on mobile to prevent wrapping */
    .cases-column .review-card .review-image {
        height: 120px;
    }

    .cases-column .review-card .review-banner {
        font-size: 0.735rem;
        /* ~70% of 1.05rem */
        padding: 10px 15px;
    }

    .cases-column .review-card .review-comparison {
        padding: 18px 15px 10px;
        gap: 8px;
    }

    .cases-column .review-card .comp-col .amount {
        font-size: 1.54rem;
        /* ~70% of 2.2rem */
    }

    .cases-column .review-card .comp-col .unit {
        font-size: 0.7rem;
        /* ~70% of 1rem */
    }

    .cases-column .review-card .comp-col .label {
        font-size: 0.6rem;
        /* ~70% of 0.85rem */
        margin-top: 3px;
    }

    .cases-column .review-card .comp-arrow {
        gap: 4px;
    }

    .cases-column .review-card .comp-arrow .arrow-text {
        font-size: 0.56rem;
        /* ~70% of 0.8rem */
    }

    .cases-column .review-card .comp-arrow .arrow-icon-css {
        width: 40px;
        height: 6px;
    }

    .cases-column .review-card .comp-arrow .arrow-icon-css::before {
        height: 6px;
        width: 1px;
        left: -2px;
    }

    .cases-column .review-card .comp-arrow .arrow-icon-css::after {
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 7px solid #9f7d56;
        right: -6px;
        top: -3px;
    }

    .cases-column .review-card .review-caption {
        font-size: 0.6rem;
        /* ~70% of 0.8rem */
        padding: 0 15px 15px;
        margin: 0 15px;
        padding-top: 10px;
    }

    /* Consultation Form Mobile Optimization */
    .consultation-form {
        padding: 40px 15px;
    }

    .consultation-form .form-container {
        padding: 20px 15px;
        border-top-width: 3px;
    }

    .consultation-form form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
    }

    .consultation-form form .form-group {
        grid-column: span 2;
        margin-bottom: 0;
    }

    .consultation-form form .form-group:nth-child(1),
    .consultation-form form .form-group:nth-child(2) {
        grid-column: span 1;
    }

    .consultation-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .consultation-form .form-group input,
    .consultation-form .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .consultation-form .submit-btn {
        grid-column: span 2;
        padding: 14px;
        font-size: 1rem;
    }
}