/* 기본 리셋 및 변수 설정 */
:root {
    --primary-color: #0088cc;
    --secondary-color: #00cccc;
    --accent-color: #ff6b6b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
}

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

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

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

/* 메인 컨텐츠 */
.main-content {
    min-height: calc(100vh - 400px);
}

/* 메인 페이지는 헤더가 오버레이되므로 여백 없음 */
body.home-page .main-content {
    padding-top: 0;
}

/* 페이지 헤더 */
.page-header {
    background: linear-gradient(135deg, #006B7D 0%, #00a8b8 100%);
    color: white;
    padding: 50px 0;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 16px;
    opacity: 0.9;
}

/* 헤더 스타일 */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #006B7D;
    margin: 0;
}

/* 햄버거 메뉴 버튼 (모바일) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #006B7D;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 모바일 메뉴 오버레이 */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* 모바일 메뉴 패널 */
.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 0 30px 0;
}

/* 데스크톱 네비게이션 */
.desktop-nav {
    flex: 1;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 15px;
    color: #2c3e50;
    padding: 10px 0;
    display: block;
    transition: all 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav li.active a {
    color: #006B7D;
}

/* 모바일 네비게이션 */
.mobile-nav {
    display: none;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: block;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav li.active a {
    background: #f8f9fa;
    color: #006B7D;
}

/* 데스크톱 헤더 액션 */
.desktop-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* 모바일 헤더 액션 */
.mobile-header-actions {
    display: none;
    flex-direction: column;
    padding: 0 30px 20px;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.mobile-header-actions .user-type-selector {
    width: 100%;
    margin-bottom: 8px;
}

.mobile-header-actions .header-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.user-type-selector {
    display: flex;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 3px;
}

.user-type-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.user-type-btn.active {
    background: #006B7D;
    color: white;
}

.user-type-btn:hover:not(.active) {
    color: #006B7D;
}

.header-link {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.header-link:hover {
    background: #f0f0f0;
    color: #006B7D;
}

/* 메인 컨텐츠 */
.main-content {
    min-height: calc(100vh - 400px);
}

/* 메인 배너 */
.hero-banner {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #f8f9fa;
}

.hero-banner-image {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* 반응형 배너 */
@media (max-width: 1024px) {
    .hero-banner-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 15px 0;
    }
    
    .hero-banner-image {
        padding: 0 15px;
    }
    
    .main-nav ul {
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 13px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .user-type-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .header-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 10px 0;
    }
    
    .hero-banner-image {
        padding: 0 10px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 10px;
    }
    
    .main-nav a {
        font-size: 12px;
        padding: 5px 0;
    }
}

/* 팝업 스타일 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.popup-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.popup-body {
    padding: 40px;
}

.event-banner {
    text-align: center;
    margin-bottom: 30px;
}

.event-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.event-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.event-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.event-details p {
    margin-bottom: 10px;
    font-size: 15px;
}

.event-details strong {
    color: var(--primary-color);
}

.event-note {
    font-size: 13px;
    color: var(--text-light);
}

.popup-footer {
    padding: 20px 40px;
    border-top: 1px solid var(--border-color);
}

.popup-footer label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* 버튼 스타일 */
.btn-primary,
.btn-secondary,
.btn-view,
.btn-banner {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-view:hover {
    background: #0077b3;
}

.btn-banner {
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-banner:hover {
    background: #ff5252;
    transform: scale(1.05);
}

/* 채용공고 섹션 */
.job-listings {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.more-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

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

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

.company-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.company-header {
    margin-bottom: 20px;
}

.company-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.logo-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    padding: 10px;
}

.company-info {
    flex: 1;
    margin-bottom: 20px;
}

.company-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.job-count,
.job-status {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.status-recruiting {
    color: var(--success-color);
    font-weight: 600;
}

/* 공지사항 섹션 */
.info-section {
    padding: 80px 0;
}

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

.info-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.notice-list {
    list-style: none;
}

.notice-list li {
    margin-bottom: 20px;
}

.notice-list a {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.notice-list a:hover {
    background: var(--bg-light);
}

.notice-title {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
}

.notice-date {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
    margin-left: 15px;
}

.view-all {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.view-all:hover {
    background: var(--primary-color);
    color: white;
}

/* 참여방법 배너 */
.participation-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* 스폰서 섹션 */
.sponsors {
    padding: 60px 0;
    background: var(--bg-light);
}

.sponsors h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.sponsor-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sponsor-item img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

/* 푸터 */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.organizer {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.8;
    color: #95a5a6;
}

.footer-links {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-links a.privacy {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-links a:hover {
    color: white;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link.naver {
    background: #03c75a;
}

.social-link.kakao {
    background: #fee500;
    color: #000;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .company-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sponsor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .sub-nav > ul {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .company-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* About Page & Jobs Page Styles */
.about-section {
    padding: 60px 0;
}

.tab-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    padding: 15px 30px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #006B7D;
}

.tab-button.active {
    color: #006B7D;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #006B7D;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.event-banner-large {
    background: linear-gradient(135deg, #006B7D 0%, #00a8b8 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.banner-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
}

.event-details-large p {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
}

.event-details-large strong {
    min-width: 120px;
    color: #00ff88;
}

.map-btn {
    color: #00ff88;
    text-decoration: underline;
}

.organizers {
    margin-top: 60px;
}

.organizers h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.organizer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

.organizer-logo {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    color: #006B7D;
    font-size: 12px;
}

.organizer-item p {
    font-size: 14px;
    line-height: 1.4;
}

.organizer-single {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.organizer-single .organizer-logo {
    margin-bottom: 20px;
}

.participation-guide h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.step {
    flex: 1;
    max-width: 250px;
}

.step-number {
    background: #006B7D;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    font-size: 14px;
}

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

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: #006B7D;
    font-weight: 700;
}

.notice-box {
    background: #fff9e6;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0;
}

.notice-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff9800;
}

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

.notice-box li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.notice-box li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #ff9800;
    font-weight: 700;
}

.notice-list-full {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.notice-item-full {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.notice-item-full:last-child {
    border-bottom: none;
}

.notice-badge {
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.notice-item-full a {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-item-full h3 {
    font-size: 16px;
    font-weight: 500;
}

.notice-meta {
    font-size: 14px;
    color: var(--text-light);
}

.notice-item-full:hover {
    background: var(--bg-light);
}

/* About & Jobs Page Responsive */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .organizer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-banner-large {
        padding: 30px;
    }
    
    .banner-text h2 {
        font-size: 32px;
    }
}

/* Jobs Page Specific Styles */
.jobs-section {
    padding: 60px 0;
}

.search-filter {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 15px;
    align-items: center;
}

.filter-select,
.search-input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

.btn-search {
    padding: 12px 30px;
    background: #006B7D;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #005566;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.result-count {
    font-size: 16px;
}

.result-count strong {
    color: #006B7D;
}

.job-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.job-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.job-main {
    flex: 1;
}

.job-company {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo-sm {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #006B7D;
}

.company-info-sm h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.job-position {
    font-size: 15px;
    color: var(--text-light);
}

.detail-badge {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.badge-type {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-education {
    background: #f3e5f5;
    color: #7b1fa2;
}

.badge-experience {
    background: #e8f5e9;
    color: #388e3c;
}

.job-info-row {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label {
    font-size: 13px;
    color: var(--text-light);
}

.info-value {
    font-size: 14px;
    font-weight: 600;
}

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

.status {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.status-active {
    background: #e8f5e9;
    color: var(--success-color);
}

.job-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-bookmark {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-bookmark:hover {
    background: var(--bg-light);
    border-color: #006B7D;
    color: #006B7D;
}

.btn-detail {
    padding: 10px 20px;
    border: 1px solid #006B7D;
    color: #006B7D;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #006B7D;
    color: white;
}

.btn-apply {
    padding: 10px 25px;
    background: #006B7D;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: #005566;
}

/* Jobs Page Responsive */
@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .job-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .job-actions {
        margin-top: 20px;
        justify-content: flex-end;
    }
}

/* Consulting Page Styles */
.consulting-section {
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

.service-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #006B7D;
    margin-bottom: 20px;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-features h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.service-info-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.service-info-box p {
    margin-bottom: 10px;
    font-size: 14px;
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #006B7D;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
}

.btn-service-apply {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #006B7D 0%, #00a8b8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,107,125,0.3);
}

.application-status {
    margin-top: 60px;
}

.application-status h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.status-table-wrapper {
    overflow-x: auto;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.status-table thead {
    background: var(--bg-light);
}

.status-table th,
.status-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.status-table th {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.status-table tbody tr:hover {
    background: var(--bg-light);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status-completed {
    background: #e8f5e9;
    color: var(--success-color);
}

.status-pending {
    background: #fff3e0;
    color: #f57c00;
}

/* Employment Info Page Styles */
.employment-info-section {
    padding: 60px 0;
}

.policy-intro,
.blind-hiring-intro,
.resources-intro {
    text-align: center;
    margin-bottom: 50px;
}

.policy-intro h2,
.blind-hiring-intro h2,
.resources-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

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

.institution-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.institution-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.institution-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #006B7D;
    font-size: 13px;
}

.institution-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.policy-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #006B7D;
}

.policy-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-policy-detail {
    color: #006B7D;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-policy-detail:hover {
    text-decoration: underline;
}

.blind-hiring-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.hiring-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.hiring-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.section-content li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
}

.section-content li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #006B7D;
    font-weight: 700;
}

.evaluation-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.point-card {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.point-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #006B7D;
}

.hiring-tips {
    background: #e8f5e9;
    border-radius: 12px;
    padding: 40px;
}

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

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

.tip-icon {
    font-size: 24px;
    color: var(--success-color);
}

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

.resource-category {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.resource-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #006B7D;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--bg-light);
}

.resource-name {
    font-weight: 500;
}

.resource-meta {
    font-size: 13px;
    color: var(--text-light);
}

/* Events Page Styles */
.events-section {
    padding: 60px 0;
}

.briefing-intro {
    margin-bottom: 50px;
}

.event-notice {
    background: #fff9e6;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.schedule-section {
    margin-bottom: 50px;
}

.schedule-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.schedule-table thead {
    background: #006B7D;
    color: white;
}

.schedule-table th,
.schedule-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.event-type {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.event-type.company {
    background: #e3f2fd;
    color: #1976d2;
}

.event-type.lecture {
    background: #f3e5f5;
    color: #7b1fa2;
}

.participation-info {
    margin-top: 50px;
}

.participation-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.info-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.info-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.side-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.event-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #006B7D;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.event-icon-large {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.event-content h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #006B7D;
}

.event-subtitle {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.event-details {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.event-description {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.highlight-text {
    font-size: 18px;
    font-weight: 700;
    color: #006B7D;
    margin: 15px 0;
}

.event-quote {
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.event-notes {
    background: #fff9e6;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 30px;
}

.event-notes h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f57c00;
}

.event-notes ul {
    list-style: none;
    padding: 0;
}

.event-notes li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.event-notes li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #f57c00;
    font-weight: 700;
}

/* Responsive for New Pages */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .institution-grid {
        grid-template-columns: 1fr;
    }
    
    .side-events-grid {
        grid-template-columns: 1fr;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ai-stats {
        grid-template-columns: 1fr;
    }
    
    .evaluation-points {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-categories {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   모바일 반응형 스타일
   ======================================== */

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .header-content {
        gap: 20px;
    }
    
    .main-nav ul {
        gap: 25px;
    }
    
    .main-nav a {
        font-size: 14px;
    }
    
    .company-grid,
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .organizer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .institution-grid {
        grid-template-columns: 1fr;
    }
    
    .side-events-grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
    /* 헤더 모바일 */
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo h1 {
        font-size: 14px;
    }
    
    /* 햄버거 메뉴 표시 */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* 데스크톱 네비게이션 숨김 */
    .desktop-nav,
    .desktop-actions {
        display: none;
    }
    
    /* 모바일 메뉴 패널 표시 */
    .mobile-menu-panel {
        display: block;
    }
    
    /* 모바일 네비게이션 표시 */
    .mobile-nav {
        display: block;
    }
    
    /* 모바일 헤더 액션 표시 */
    .mobile-header-actions {
        display: flex;
    }
    
    /* 메인 배너 모바일 */
    .hero-banner {
        padding: 15px 0;
    }
    
    .hero-banner-image {
        padding: 0 15px;
    }
    
    /* 팝업 모바일 */
    .popup-content {
        width: 90%;
        max-width: 400px;
        margin: 20px;
    }
    
    /* 섹션 패딩 조정 */
    .job-listings,
    .info-section,
    .about-section,
    .jobs-section,
    .consulting-section,
    .employment-info-section,
    .events-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    /* 그리드 레이아웃 모바일 */
    .company-grid,
    .info-grid,
    .organizer-grid,
    .benefit-grid,
    .feature-grid,
    .evaluation-points,
    .resource-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 테이블 모바일 */
    .status-table-wrapper,
    .schedule-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .status-table,
    .schedule-table {
        min-width: 600px;
    }
    
    /* 탭 메뉴 모바일 */
    .tab-menu {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-button {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* 스텝 레이아웃 모바일 */
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    /* 배너 모바일 */
    .event-banner-large {
        padding: 30px 20px;
    }
    
    .banner-text h2 {
        font-size: 32px;
    }
    
    .event-details-large p {
        font-size: 15px;
        flex-direction: column;
        gap: 5px;
    }
    
    /* 통계 카드 모바일 */
    .ai-stats,
    .info-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 폼 레이아웃 모바일 */
    .filter-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* 채용공고 카드 모바일 */
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .job-actions {
        width: 100%;
        margin-top: 20px;
        justify-content: space-between;
    }
    
    .btn-detail,
    .btn-apply {
        flex: 1;
    }
    
    /* 페이지 헤더 모바일 */
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header .subtitle {
        font-size: 14px;
    }
    
    /* 서비스 카드 모바일 */
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h2 {
        font-size: 22px;
    }
    
    /* Tips 그리드 모바일 */
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    /* 이벤트 카드 모바일 */
    .event-card {
        padding: 25px 20px;
    }
    
    .event-content h2 {
        font-size: 20px;
    }
    
    /* 프로세스 스텝 모바일 */
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
}

/* 소형 모바일 (480px 이하) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 12px;
    }
    
    .main-nav {
        width: 100%;
        right: -100%;
    }
    
    .header-actions {
        width: 100%;
        right: -100%;
    }
    
    .hero-banner {
        padding: 10px 0;
    }
    
    .hero-banner-image {
        padding: 0 10px;
    }
    
    .company-card,
    .info-card,
    .service-card,
    .event-card {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .tab-button {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .event-banner-large {
        padding: 25px 15px;
    }
    
    .banner-text h2 {
        font-size: 24px;
    }
    
    .page-header {
        padding: 25px 0;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .btn-service-apply,
    .btn-primary {
        font-size: 14px;
        padding: 14px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* 가로 모드 대응 */
@media (max-width: 768px) and (orientation: landscape) {
    .main-nav {
        height: 100vh;
        overflow-y: auto;
    }
    
    .page-header {
        padding: 20px 0;
    }
}

/* 터치 디바이스 최적화 */
@media (hover: none) and (pointer: coarse) {
    /* 터치 타겟 크기 증가 */
    .main-nav a,
    .header-link,
    .user-type-btn,
    .tab-button,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 호버 효과 제거 */
    .company-card:hover,
    .job-item:hover,
    .service-card:hover {
        transform: none;
    }
}

/* iOS Safari 하단 여백 대응 */
@supports (padding: max(0px)) {
    .main-nav,
    .header-actions {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* 스크롤바 스타일링 (모바일 웹킷) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 텍스트 선택 방지 (버튼류) */
.mobile-menu-toggle,
.tab-button,
.user-type-btn,
.btn-primary,
.btn-secondary {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}