/* 0� �K  $ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-white);
    word-break: keep-all;
    white-space: normal;
    font-size: 16px;
}

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e2558;
    --secondary-color: #6b7280;
    --accent-color: #d97706;
    --accent-dark: #b45309;
    --background-light: #fafaf9;
    --background-white: #ffffff;
    --background-gradient: linear-gradient(135deg, #1e3a8a 0%, #1e2558 100%);
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --light-gray: #f9fafb;
    --success-color: #059669;
    --error-color: #dc2626;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* 학술적 전문 색상 */
    --academic-navy: #0f172a;
    --academic-blue: #1e40af;
    --academic-gold: #f59e0b;
    --academic-cream: #fffbeb;
    --academic-gray: #f3f4f6;
    --professional-text: #111827;
}

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

/* 0� �� ��| */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    letter-spacing: -0.025em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--academic-navy) 100%);
    color: white;
    border: 2px solid var(--academic-gold);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--academic-blue) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-large:hover::before {
    left: 100%;
}

/* �T  $D�tX */
.header {
    background: rgba(30, 58, 138, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--academic-gold);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--academic-gold);
    background: linear-gradient(135deg, var(--academic-gold), #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    isolation: isolate;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.nav-action:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--academic-gold);
    transform: translateY(-1px);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--academic-gold), #ffffff);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--academic-gold);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--academic-gold);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-button {
    color: var(--academic-gold);
    font-weight: 600;
}

/* ��p Tt (�|�) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--academic-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Tx XP  */
main {
    padding-top: 0;
}

/* ��\ 9X */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 120px;
    box-sizing: border-box;
}

/* 비디오 배경 */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.quick-contact {
    text-align: center;
    margin-top: 1.5rem;
}

.quick-contact p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.quick-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

.quick-btn span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    color: white;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.quick-btn .icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
    font-size: 1.1rem;
}

.service-card .icon-circle {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(30, 64, 175, 0.25));
    color: var(--academic-gold);
}

.icon-circle i {
    line-height: 1;
}

.hero-image {
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect width="400" height="400" fill="%23f3f4f6"/><text x="200" y="200" text-anchor="middle" fill="%236b7280" font-family="Arial" font-size="20">|8 �$ t��</text></svg>') center/cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

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

/* 섹션 제목 */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/*  9X */
.strengths {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.strengths::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.strengths .container {
    position: relative;
    z-index: 1;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.strengths-grid.metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strength-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 18px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.strength-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(245, 158, 11, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.strength-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 32px 60px rgba(15, 23, 42, 0.45);
}

.strength-card:hover::after {
    opacity: 1;
}

.strength-card * {
    position: relative;
    z-index: 1;
}

.strength-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.strength-card h3 {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.strength-card p {
    color: rgba(229, 231, 235, 0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .strengths-grid,
    .strengths-grid.metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .strengths-grid,
    .strengths-grid.metrics {
        grid-template-columns: 1fr;
    }
}

.strength-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.strength-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.strength-item:hover::before {
    transform: scaleX(1);
}

.strength-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.strength-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.strength-item:hover .strength-icon {
    transform: scale(1.1);
}

.strength-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.strength-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* D� � 9X */
.services-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

.services-overview .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.services-horizontal {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

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

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(245, 158, 11, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-12px) rotateX(5deg);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(37, 99, 235, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(30, 64, 175, 0.9));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* 통계 섹션 */
.stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.stats .container {
    position: relative;
    z-index: 1;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #fcd34d 0%, #f59e0b 25%, #fbbf24 50%, #f59e0b 75%, #fcd34d 100%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
    animation: shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.4));
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.reviews {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
}

.reviews .section-title,
.reviews .section-subtitle,
.strengths .section-title,
.strengths .section-subtitle {
    color: white;
}

.reviews .section-subtitle {
    opacity: 0.85;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}


.review-stars {
    color: #facc15;
    font-size: 1.1rem;
    letter-spacing: 0.15rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    gap: 1rem;
    flex-wrap: wrap;
}

.review-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: rgba(250, 204, 21, 0.95);
}

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

.review-cta .btn {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.review-cta .btn:hover {
    border-color: rgba(245, 158, 11, 0.9);
    background: rgba(245, 158, 11, 0.15);
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 4.5rem 0;
    }

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

/* \� \� 9X */
.latest-blog {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
}


.blog-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(30, 58, 138, 0.95);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.blog-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 58, 138, 0.2);
}

.blog-date {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    white-space: normal;
}

.blog-card p {
    color: #6b7280;
    font-size: 0.925rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    white-space: normal;
}

.blog-excerpt {
    color: #6b7280;
    font-size: 0.925rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-date {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-date i {
    color: #1e3a8a;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.blog-tag:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.blog-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

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

/* \� CTA 9X */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--academic-navy) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-content p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* x0 */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    animation: subtle-move 20s linear infinite;
}

@keyframes subtle-move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-column p {
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.footer-links li a {
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links li a::before {
    content: '▸';
    font-size: 0.75rem;
    color: rgba(245, 158, 11, 0.9);
    margin-right: 0.2rem;
}

.footer-links li a:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
    color: rgba(226, 232, 240, 0.85);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact li i {
    color: rgba(245, 158, 11, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.business-info {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-info p {
    margin-bottom: 0.25rem;
}

/* Q �x */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(30, 58, 138, 0.97);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.12);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(245, 158, 11, 0.3);
    }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.95);
    }

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

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .strengths-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .overview-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overview-text {
        text-align: center;
    }

    .overview-image {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 2rem 1rem;
    }
}

/* 성공 사례 섹션 */
.success-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.success-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.success-item:hover img {
    transform: scale(1.05);
}

.success-content {
    padding: 2rem;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .success-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .success-item img {
        height: 200px;
    }

    .success-content {
        padding: 1.5rem;
    }
}

/* 서비스 히어로 섹션 */
.services-hero {
    padding: 8rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #1e40af;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(30, 64, 175, 0.4);
}


/* 성과 통계 섹션 */
.achievement-stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.achievement-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    animation: float-bg 8s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -10px) scale(1.05); }
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 50%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(16, 185, 129, 0.3) 50%,
        rgba(139, 92, 246, 0.3) 100%);
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 35px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.stat-card:hover::before,
.stat-card:hover::after {
    opacity: 1;
}

/* stat-card 내부 텍스트 색상 재정의 */
.stat-card .stat-number {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background: none !important;
    text-shadow: none !important;
}

.stat-card .stat-label {
    color: var(--text-secondary) !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

.stat-number-alt {
    font-size: 4.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
    margin-top: 1rem;
}

.stat-label-alt {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.stat-label-alt::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label-alt::after {
    opacity: 1;
    width: 50px;
}

/* 서비스 섹션 구분 */
.service-section-1 {
    background: white;
    border-top: 4px solid #1e40af;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-section-2 {
    background: #f8fafc;
    border-top: 4px solid #059669;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-section-3 {
    background: white;
    border-top: 4px solid #dc2626;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-section-4 {
    background: #f8fafc;
    border-top: 4px solid #7c3aed;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detail {
    padding: 4rem 0;
    position: relative;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.service-detail h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.service-detail h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: currentColor;
}

/* 보고서 유형 */
.report-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.report-type {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.report-type:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.report-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.report-type p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* 반응형 대응 */
@media (max-width: 768px) {
    .services-hero {
        padding: 5rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }

    .achievement-stats {
        padding: 4rem 0;
    }

    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .stat-card {
        padding: 3rem 2rem;
    }

    .stat-number-alt {
        font-size: 3.5rem;
        margin-top: 0.5rem;
    }

    .stat-label-alt {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-horizontal {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .service-item {
        min-width: 200px;
        max-width: none;
        flex-basis: calc(50% - 0.75rem);
    }

    .report-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-horizontal {
        flex-direction: column;
        gap: 1rem;
    }

    .service-item {
        max-width: none;
        flex-basis: auto;
        min-width: auto;
    }

    .report-types {
        grid-template-columns: 1fr;
    }

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

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

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

/* �1  �� ��| */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* �ld `�TtX ( �) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strength-item,
.service-card,
.blog-card {
    animation: fadeInUp 0.6s ease-out;
}

/* 회사 소개 페이지 스타일 */
.page-header {
    background: linear-gradient(135deg, var(--academic-navy) 0%, var(--primary-color) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.company-intro {
    padding: 5rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.intro-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #374151;
    line-height: 1.6;
}

.intro-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-image {
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect width="400" height="400" fill="%23f3f4f6"/><text x="200" y="200" text-anchor="middle" fill="%236b7280" font-family="Arial" font-size="18">회사 소개 이미지</text></svg>') center/cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.mission-vision {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-item p {
    color: #6b7280;
    line-height: 1.6;
}

.core-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.1);
}

.value-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.team-introduction {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    display: flex;
    gap: 1.5rem;
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.member-photo::before {
    content: '👨‍🎓';
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-title {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-speciality {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.member-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}


.differentiators {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diff-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-4px);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.diff-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.diff-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-info {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.contact-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.method-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(245, 158, 11, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.method-icon i {
    color: var(--primary-color);
}

.method-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-info p {
    opacity: 0.9;
}

.cta-section {
    text-align: center;
}

/* 활성 네비게이션 링크 */
.nav-link.active {
    color: var(--academic-gold);
    font-weight: 600;
}

/* 회사 소개 페이지 반응형 */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

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

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .intro-text .lead {
        font-size: 1.125rem;
    }

    .intro-image {
        height: 300px;
    }

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

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

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

    .team-member {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }


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

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* 서비스 페이지 스타일 */
.services-overview-detail {
    padding: 4rem 0;
    background-color: #f8fafc;
}

/* 앵커 링크 대상 섹션 스타일 */
section[id] {
    scroll-margin-top: 100px;
}

.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.overview-text {
    text-align: left;
}

.overview-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.overview-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.4) 0%,
        rgba(30, 58, 138, 0.35) 25%,
        rgba(59, 130, 246, 0.25) 50%,
        rgba(147, 197, 253, 0.2) 75%,
        rgba(239, 246, 255, 0.3) 100%
    );
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.overview-image:hover img {
    transform: scale(1.02);
}

.overview-image:hover::before {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.3) 0%,
        rgba(30, 58, 138, 0.25) 25%,
        rgba(59, 130, 246, 0.15) 50%,
        rgba(147, 197, 253, 0.1) 75%,
        rgba(239, 246, 255, 0.2) 100%
    );
    mix-blend-mode: overlay;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.overview-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.6;
}

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

.service-detail {
    padding: 5rem 0;
}

.service-detail.bg-gray {
    background-color: #f8fafc;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-header .service-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

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

.service-description {
    margin-bottom: 3rem;
}

.service-description h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}

.service-features-detail {
    margin-bottom: 4rem;
}

.service-features-detail h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

.service-process {
    margin-bottom: 4rem;
}

.service-process h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.step:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    z-index: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.service-timeline {
    margin-bottom: 4rem;
}

.service-timeline h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.timeline-container {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-container .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.timeline-period {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    margin-right: 1.5rem;
}

.timeline-phase h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-phase p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.tools-section {
    margin-bottom: 4rem;
}

.tools-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    background: white;
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-4px);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tool-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.analysis-types {
    margin-bottom: 4rem;
}

.analysis-types h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.analysis-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2563eb;
    text-align: center;
}

.category ul {
    list-style: none;
}

.category ul li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

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

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

.service-faq {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.final-service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

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

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

/* 서비스 페이지 반응형 */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-header .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .service-title h2 {
        font-size: 2rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

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

    .process-steps {
        gap: 1.5rem;
    }

    .step {
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step:not(:last-child) .step-number::after {
        top: 50px;
        height: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .analysis-categories {
        grid-template-columns: 1fr;
    }

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

    .timeline-container .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-period {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* 블로그 페이지 스타일 */
.blog-filters {
    padding: 2rem 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.filter-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.featured-posts {
    padding: 3rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.featured-post .post-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-post .post-content {
    padding: 2rem;
}

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

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-category.notice {
    background: #fee2e2;
    color: #991b1b;
}

.post-category.thesis-tips {
    background: #dbeafe;
    color: var(--primary-color);
}

.post-category.statistics-tips {
    background: #d1fae5;
    color: #065f46;
}

.post-category.research-tips {
    background: #fef3c7;
    color: #92400e;
}

.post-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.featured-post h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.featured-post p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

.blog-posts {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.post-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

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

.post-footer {
    margin-top: 3rem;
}

.read-more-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1d4ed8;
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: white;
    color: #374151;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-btn:hover:not(:disabled) {
    border-color: #2563eb;
    color: #2563eb;
}

.page-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-signup {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.related-resources {
    padding: 4rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-item:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.1);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.resource-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* 상담신청 페이지 스타일 */
.consultation-info {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.contact-form-section {
    padding: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    margin-bottom: 3rem;
}

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

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-header p {
    color: #6b7280;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.required {
    color: #ef4444;
}

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

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.service-option {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.service-option:hover {
    border-color: #2563eb;
}

.service-option.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.service-option input[type="radio"] {
    display: none;
}

.option-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.option-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.file-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-area:hover {
    border-color: #2563eb;
    background-color: #f8fafc;
}

.file-upload-area.dragover {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.file-upload-area input[type="file"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.upload-placeholder p {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.upload-placeholder small {
    color: #6b7280;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.file-info {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 500;
    color: #374151;
}

.file-size {
    font-size: 0.75rem;
    color: #6b7280;
}

.remove-file {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-file:hover {
    background: #dc2626;
}

.contact-preferences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-option:hover {
    background-color: #f8fafc;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.privacy-agreement {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.agreement-text {
    flex: 1;
    line-height: 1.5;
}

.privacy-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.privacy-summary {
    margin-top: 0.75rem;
    padding-left: 2.5rem;
}

.privacy-summary small {
    color: #6b7280;
    line-height: 1.4;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-notice {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.direct-contact {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.direct-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.direct-contact > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.direct-contact .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direct-contact .contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.direct-contact .method-icon {
    width: 52px;
    height: 52px;
}

.method-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.method-details p {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-details small {
    color: #6b7280;
}

.contact-faq {
    padding: 4rem 0;
    background-color: #f8fafc;
}

/* 모달 스타일 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #374151;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-primary);
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.modal-body li {
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

/* 에러 메시지 스타일 */
.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* 메시지 스타일 */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.message-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* 블로그와 상담신청 페이지 반응형 */
@media (max-width: 768px) {
    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

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

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

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .contact-preferences {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1rem;
    }

    .direct-contact .contact-methods {
        gap: 0.75rem;
    }

    .direct-contact .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .filter-tab {
        flex-shrink: 0;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .page-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .modal-overlay {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }
}

/* 새로 추가된 기능들을 위한 스타일 */

/* 전문가 프로필 */
.expert-profiles {
    padding: 4rem 0;
    background-color: #f8fafc;
}


.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.15);
}

.profile-photo {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.profile-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.25) 100%);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.profile-specialty, .profile-experience {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* 핵심 가치 */
.core-values {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(245, 158, 11, 0.2));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 1.1rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.value-icon i {
    color: var(--primary-color);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* 미션 & 비전 */
.mission-vision {
    padding: 4rem 0;
    background-color: #1e40af;
    color: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.mv-item {
    text-align: center;
    padding: 2rem;
}

.mv-item h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--academic-gold);
    font-weight: 700;
}

/* 회사 연혁 */
.company-history {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.timeline {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ 스타일 */
.faq-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: #374151;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 서비스 프로세스 */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1e40af;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 논문 유형 */
.thesis-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.thesis-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.thesis-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 통계 소프트웨어 */
.stats-software {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.software-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.software-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 성공 사례 */
.success-cases {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* 태블릿 */
@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-field {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-description {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-result {
    color: #059669;
    font-weight: 600;
}

/* 블로그 필터 */
.blog-filters {
    padding: 2rem 0;
    background-color: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

/* 모바일에서 필터 버튼 한 줄 표시 */
@media (max-width: 768px) {
    .filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* 뷰 토글 버튼 */
.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.25rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.view-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: #374151;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.view-btn:hover {
    background: #f3f4f6;
    color: #1e40af;
}

.view-btn.active {
    background: #1e40af;
    color: white;
}

/* 정렬 드롭다운 */
.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.sort-dropdown label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.sort-dropdown label i {
    color: #1e40af;
}

.sort-dropdown select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #374151;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.sort-dropdown select:hover {
    border-color: #1e40af;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* 리스트 뷰 스타일 */
.blog-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-grid.list-view .blog-card {
    display: flex;
    flex-direction: row;
    padding: 0;
    height: auto;
}

.blog-grid.list-view .blog-card a {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.blog-grid.list-view .blog-image {
    width: 280px;
    min-width: 280px;
    height: auto;
}

.blog-grid.list-view .blog-content {
    flex: 1;
    padding: 1.5rem;
}

.blog-grid.list-view .blog-card h3 {
    font-size: 1.35rem;
    -webkit-line-clamp: 1;
}

.blog-grid.list-view .blog-excerpt {
    -webkit-line-clamp: 2;
    margin-bottom: 1rem;
}

/* 모바일 리스트 뷰 */
@media (max-width: 768px) {
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .view-toggle {
        width: 100%;
        justify-content: center;
    }

    .sort-dropdown {
        width: 100%;
        justify-content: center;
    }

    .sort-dropdown select {
        flex: 1;
        max-width: 200px;
    }

    .blog-grid.list-view .blog-card {
        flex-direction: column;
    }

    .blog-grid.list-view .blog-card a {
        flex-direction: column;
    }

    .blog-grid.list-view .blog-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .blog-grid.list-view .blog-card h3 {
        font-size: 1.15rem;
    }
}

/* 블로그 포스트 */
.blog-posts {
    padding: 3rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem 0;
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.category-notice { background: #dbeafe; color: #1e40af; }
.category-tips { background: #d1fae5; color: #059669; }
.category-statistics { background: #fef3c7; color: #d97706; }
.category-reviews { background: #ede9fe; color: #7c3aed; }
.category-success { background: #fce7f3; color: #be185d; }

.post-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.post-title {
    padding: 0 1.5rem;
    margin: 1rem 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.4;
}

.post-excerpt {
    padding: 0 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-author {
    padding: 0 1.5rem 1.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* 뉴스레터 */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* 파일 업로드 */
.file-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #1e40af;
    background-color: #f8fafc;
}

.file-upload-icon {
    width: 64px;
    height: 64px;
    background-color: var(--light-gray);
    color: var(--text-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.file-upload-note {
    color: #6b7280;
    font-size: 0.875rem;
}

#fileInput {
    display: none;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f4f6;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.file-item button {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

/* 개인정보 처리방침 */
.privacy-section {
    margin-top: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
}

.privacy-details-btn {
    background: none;
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.875rem;
}

.privacy-details {
    display: none;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.privacy-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.privacy-details p {
    margin-bottom: 0.5rem;
}

/* 연락처 정보 */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(245, 158, 11, 0.25));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.contact-icon i {
    color: var(--primary-color);
}

.contact-method h4 {
    color: #0f172a;
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-method p {
    color: #374151;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    background: #fef2f2;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #dc2626;
}

.contact-method .btn {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.contact-method .btn-secondary {
    background: linear-gradient(135deg, var(--academic-blue) 0%, var(--primary-color) 100%);
    color: white;
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

.contact-method .btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-dark);
}

/* 반응형 스타일 추가 */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form form {
        flex-direction: column;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-item {
        padding: 1.5rem;
    }

    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .contact-method p {
        word-break: break-all;
        font-size: 0.9rem;
        width: 100%;
    }

    .contact-method h4 {
        font-size: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* 소셜 공유 버튼 스타일 */
.social-share {
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
}

.social-share h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}

.share-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: var(--light-gray);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn i {
    font-size: 1.1rem;
}

.share-btn.naver {
    background: #03c75a;
    color: white;
}

.share-btn.naver:hover {
    background: #02b350;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
}

.share-btn.kakao {
    background: #fee500;
    color: #3a1d1d;
}

.share-btn.kakao:hover {
    background: #fdd400;
}

.share-btn.link {
    background: var(--text-secondary);
    color: white;
}

.share-btn.link:hover {
    background: var(--text-primary);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

/* 고객 후기 스타일 */
.customer-reviews {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 숨고 하이라이트 후기 특별 스타일 */
.soomgo-highlight {
    border-left: 4px solid var(--academic-gold);
    background: linear-gradient(145deg, #fffbeb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.soomgo-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--academic-gold), var(--primary-color), var(--academic-gold));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.soomgo-highlight:hover::before {
    opacity: 0.3;
}

.soomgo-highlight .review-platform {
    color: var(--academic-gold);
    font-weight: 600;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1rem;
}

.review-content p::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    left: -10px;
    top: -5px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-info h4 {
    color: var(--accent-color);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.result-badge {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.location-info > div {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.location-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.location-info ul {
    list-style: none;
    padding: 0;
}

.location-info ul li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.location-info ul li:last-child {
    border-bottom: none;
}

.map-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.map-placeholder p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.landmark-info {
    text-align: left;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.landmark-info p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.landmark-info ul {
    list-style: none;
    padding: 0;
}

.landmark-info ul li {
    padding: 0.25rem 0;
    color: #374151;
}

.visit-notice {
    margin-top: 3rem;
}

.notice-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.notice-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.notice-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.contact-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.contact-buttons .btn-primary:hover {
    background: #f8fafc;
    border-color: #f8fafc;
}

/* 고객 후기 반응형 */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* 상담 방법 스타일 */
.consultation-methods {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.method-card .method-icon {
    margin: 0 auto 1rem;
}

.method-card .method-icon i {
    font-size: 1.4rem;
}

.method-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.consultation-notice {
    margin-top: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.1);
}

.notice-content {
    padding: 2rem;
}

.notice-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.notice-content ul {
    list-style: none;
    padding: 0;
}

.notice-content ul li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.notice-content ul li:last-child {
    border-bottom: none;
}

/* 황금색 번쩍이는 애니메이션 */
@keyframes shimmer {
    0% {
        background-position: -200% center;
        filter: brightness(1);
    }
    100% {
        background-position: 200% center;
        filter: brightness(1.2);
    }
}

/* 상담 방법 반응형 */
@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-card {
        padding: 2rem 1.5rem;
    }
}

/* 블로그 포스트 페이지 스타일 */
.blog-post-page,
.blog-post {
    padding-top: 130px;
    min-height: 100vh;
    background-color: var(--background-light);
}

.blog-post-page .container,
.blog-post .container {
    max-width: 900px;
    padding-top: 2rem;
}

.blog-post-page .post-header,
.blog-post .post-header {
    display: block;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.blog-post-page .post-header h1,
.blog-post .post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 2rem;
    word-break: keep-all;
    padding-bottom: 1rem;
    width: 100%;
}

.blog-post-page .breadcrumb,
.blog-post .breadcrumb {
    padding: 1rem 0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-post-page .breadcrumb a,
.blog-post .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-post-page .breadcrumb a:hover,
.blog-post .breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post-page .post-content,
.blog-post .post-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.blog-post-page .post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-post-page .post-content p {
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.blog-post-page .post-content .image-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.blog-post-page .post-content .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post-page .post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.blog-post-page .post-content ul,
.blog-post-page .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-page .post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.blog-post-page .post-content pre {
    background: #f7f7f7;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-page .post-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.blog-post-page .post-content blockquote {
    background: #f9fafb;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.blog-post-page .post-content blockquote p {
    margin-bottom: 0;
}

.blog-post-page .post-content hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 2.5rem 0;
}

.blog-post-page .post-content .table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-post-page .post-content .table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-page .post-content .table-wrapper table tr:first-child td {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.blog-post-page .post-content .table-wrapper table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.blog-post-page .post-content .table-wrapper table tr:hover {
    background: #f9fafb;
}

.blog-post-page .post-content .video-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.blog-post-page .post-content .video-wrapper iframe {
    max-width: 100%;
    width: 560px;
    height: 315px;
    border-radius: 8px;
}

.blog-post-page .post-tags {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.blog-post-page .post-tags i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.blog-post-page .post-tags .tag {
    background: var(--background-light);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.blog-post-page .post-navigation {
    text-align: center;
    padding: 2rem 0;
}

.blog-post-page .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-post-page .nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.blog-post-page .post-meta,
.blog-post .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    padding: 1.5rem 0 0 0;
    border-top: 2px solid var(--border-color);
}

.blog-post-page .post-meta span,
.blog-post-page .post-meta a,
.blog-post .post-meta span,
.blog-post .post-meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}

.blog-post-page .post-meta i,
.blog-post .post-meta i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    line-height: 1;
}

.blog-post-page .post-category {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    height: fit-content;
    align-self: center;
}

.blog-post-page .original-link,
.blog-post .original-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    background: var(--background-light);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1;
    height: fit-content;
    align-self: center;
}

.blog-post-page .original-link:hover,
.blog-post .original-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.blog-post-page .blog-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

/* 반응형 */
@media (max-width: 768px) {
    .blog-post-page,
    .blog-post {
        padding-top: 100px;
    }

    .blog-post-page .post-header,
    .blog-post .post-header {
        padding: 1.2rem;
    }

    .blog-post-page .post-header h1,
    .blog-post .post-header h1 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
        line-height: 1.4;
    }

    .blog-post-page .breadcrumb,
    .blog-post .breadcrumb {
        font-size: 0.8rem;
        padding: 0.5rem 0;
        margin-bottom: 0.8rem;
    }

    .blog-post-page .post-meta,
    .blog-post .post-meta {
        gap: 0.8rem;
        padding: 1rem 0 0 0;
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .blog-post-page .post-meta span,
    .blog-post .post-meta span {
        font-size: 0.85rem;
        justify-content: center;
    }

    .blog-post-page .post-category {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.3rem;
    }

    .blog-post-page .post-meta span:not(.post-category),
    .blog-post-page .post-meta a,
    .blog-post .post-meta a {
        font-size: 0.85rem;
        flex: 0 0 auto;
    }

    .blog-post-page .post-date,
    .blog-post-page .post-author,
    .blog-post .post-date,
    .blog-post .post-author {
        flex: 1 1 auto;
        min-width: fit-content;
        justify-content: center;
    }

    .blog-post-page .original-link,
    .blog-post .original-link {
        width: 100%;
        justify-content: center;
        margin-top: 0.3rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .blog-post-page .post-content,
    .blog-post .post-content {
        padding: 1.2rem;
    }

    .blog-post-page .post-content h2,
    .blog-post .post-content h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .blog-post-page .post-content h3,
    .blog-post .post-content h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .blog-post-page .post-content .image-wrapper,
    .blog-post .post-content .image-wrapper {
        margin: 1.2rem -1.2rem;
        padding: 0;
        width: calc(100% + 2.4rem);
        overflow: hidden;
    }

    .blog-post-page .post-content .image-wrapper img,
    .blog-post .post-content .image-wrapper img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 0;
        display: block;
    }

    .blog-post-page .post-content blockquote,
    .blog-post .post-content blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
        font-size: 0.95rem;
    }

    .blog-post-page .post-content .table-wrapper,
    .blog-post .post-content .table-wrapper {
        margin: 1.5rem -1.2rem;
        width: calc(100% + 2.4rem);
    }

    .blog-post-page .post-content .table-wrapper table td,
    .blog-post .post-content .table-wrapper table td {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .post-cta {
        margin-top: 2rem;
        padding: 2rem 1.2rem;
    }

    .post-cta .cta-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .post-cta .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .post-cta .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================
   서비스 탭 스타일
   ========================================== */

/* 탭 섹션 */
.services-tabs-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

/* 탭 네비게이션 */
.tabs-navigation {
    display: flex;
    gap: 6px;
    margin-bottom: 40px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    justify-content: center;
}

/* 탭 버튼 */
.tab-btn {
    flex: 0 1 auto;
    min-width: auto;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

/* 탭 컨텐츠 */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

/* 탭 컨텐츠 내부 스타일 */
.tab-content .service-content {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.tab-content .service-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 10px;
}

.tab-content .service-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
    padding-left: 5px;
}

.tab-content .service-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.tab-content .service-text h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin: 40px 0 20px;
}

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

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .tabs-navigation {
        flex-direction: column;
        gap: 8px;
    }

    .tab-btn {
        min-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .tab-content .service-content {
        padding: 24px;
    }

    .tab-content .service-text h2 {
        font-size: 24px;
    }

    .tab-content .service-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .tab-content .service-description {
        font-size: 16px;
    }

    .tab-content .service-text h3 {
        font-size: 20px;
    }
}

/* 블로그 포스트 CTA 섹션 스타일 */
.post-cta {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.post-cta .cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.post-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.post-cta .btn {
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.post-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
