/* ============================================
   BARO Design System - Calm-Tech Minimalism
   ============================================ */

/* CSS Variables - BARO Color Palette */
:root {
    /* Primary Colors */
    --baro-blue: #0071E3;           /* Apple Blue */
    --baro-white: #FFFFFF;          /* Calm & Transparency */
    --baro-soft-gray: #F5F6F7;      /* Neutral accessibility base */

    /* Hover & Interactive Colors */
    --baro-blue-hover: #147CE5;

    /* Border & Divider Colors */
    --border-gray: #E5E7EB;
    --navbar-bg: #f5f5f7;

    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-title: #0B1120;          /* H1-H3 Headlines */
    --text-subtitle: #6B7280;       /* Subtitles and descriptions */

    /* Form Colors */
    --form-border: #D1D5DB;

    /* Spacing System */
    --spacing-2xs: 0.25rem;    /* 4px */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 3rem;      /* 48px */
    --spacing-xl: 5rem;      /* 80px */
    --spacing-2xl: 7rem;      /* 80px */

    /* Container Max Widths */
    --container-desktop: 90rem;  /* 1440px */
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, system-ui, "SF Pro Text", "SF Pro Display", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--baro-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    scroll-margin-top: 3.625rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: var(--navbar-bg);
    box-shadow: none;
    height: 3.625rem;
    min-height: 3.625rem;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.navbar-brand .logo {
    height: 2.5rem;
    width: auto;
    max-width: 180px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-collapse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: var(--spacing-lg);
}

.navbar-nav .nav-link {
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    padding: var(--spacing-xs) 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--baro-blue);
}

.navbar-nav .nav-link.portal-login {
    color: var(--text-secondary);
}

.navbar-toggler {
    border: none;
    padding: var(--spacing-xs);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* 토글 메뉴 스타일 (992px 이하 - navbar-expand-lg 기본 브레이크포인트) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 3.625rem;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - var(--spacing-sm) * 2);
        padding: var(--spacing-sm) 0;
        background: var(--baro-white);
        box-shadow: 0 0.75rem 1.5rem rgba(15, 58, 92, 0.08);
        border-radius: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }

    .navbar-nav .nav-link {
        padding: var(--spacing-sm);
    }
}

.navbar-btn {
    width: 166px;
    height: 40px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 980px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--baro-blue);
    color: var(--baro-white);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-btn:hover {
    background-color: var(--baro-blue-hover);
    color: var(--baro-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.floating-home-btn {
    position: fixed;
    right: var(--spacing-sm);
    bottom: var(--spacing-lg);
    width: 48px;
    height: 48px;
    padding: 0;
    background-color: var(--baro-blue);
    color: var(--baro-white);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(47, 95, 255, 0.2);
    display: none;
    z-index: 1100;
}

.floating-home-btn:hover,
.floating-home-btn:focus {
    background-color: var(--baro-blue-hover);
    color: var(--baro-white);
}

.floating-home-btn .arrow-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--baro-white);
    transform: translateY(-2px);
}

/* ============================================
   Hero Section - Calm-Tech Minimalism
   ============================================ */
.hero-section {
    position: relative;
    background: var(--baro-white);
    min-height: 47.046rem;
    display: flex;
    align-items: flex-start;
    overflow: visible;
    padding: var(--spacing-xl) 0;
    margin-top: 3.625rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-image: url('/static/images/hero-illustration.png');
    background-repeat: no-repeat;
    background-position: bottom 10px center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section .row {
    justify-content: center;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.33;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-title);
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    white-space: normal;
}

.hero-section .hero-subtitle {
    font-size: 20px;
    color: var(--text-subtitle);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    text-align: center;
}

.hero-section .hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.hero-section .btn-lg {
    width: 166px;
    height: 40px;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-subtitle);
    border-radius: 980px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section .btn-primary.btn-lg {
    background-color: var(--baro-blue);
    color: var(--baro-white);
    border: none;
}

.hero-section .btn-primary.btn-lg:hover {
    background-color: var(--baro-blue-hover);
    color: var(--baro-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.hero-section .btn-secondary.btn-lg {
    background-color: #FFFFFF;
    border: 1px solid #0071E3;
    color: #0071E3;
}

.hero-section .btn-secondary.btn-lg:hover {
    background-color: #F0F8FF;
    color: #0071E3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.1);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    scroll-margin-top: 3.625rem;
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: var(--spacing-lg);
}

.about-subtitle {
    font-size: 18px;
    color: var(--text-subtitle);
    margin-left: auto;
    margin-right: auto;
}

.about-image-wrapper {
    margin-top: 0;
    text-align: center;
}

.about-image {
    width: 56.691rem;
    max-width: 100%;
    height: auto;
}

/* ============================================
   Card Components - Base Styles
   ============================================ */
.card-base {
    background: var(--baro-white);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* 데스크톱에서만 hover 효과 적용 (모바일 터치 스크롤 방해 방지) */
@media (hover: hover) and (pointer: fine) {
    .card-base:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
}

/* ============================================
   Core Values - Cards
   ============================================ */
#core-values {
    overflow: hidden; /* 캐러셀 스와이프 시 오버플로우 방지 */
    padding-top: calc(var(--spacing-xl) + 52px); /* 기존 패딩 + 아이콘 튀어나올 공간 */
}

.value-card {
    width: 300px;
    height: 200px;
    position: relative;
    padding-top: calc(var(--spacing-md) + 52px); /* 아이콘 절반(52px) + 기존 패딩 */
    overflow: visible;
}

.value-icon {
    width: 104px;
    height: 104px;
    background: var(--baro-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: absolute;
    top: -52px; /* 아이콘 절반만큼 위로 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-title);
    margin-bottom: var(--spacing-md);
}

.value-description {
    font-size: 18px;
    color: var(--text-subtitle);
    margin: 0;
}

/* Bootstrap Carousel 커스텀 스타일 */
#coreValuesCarousel,
#howItWorksCarousel {
    padding-bottom: 2.5rem;
    touch-action: pan-y pinch-zoom; /* 세로 스크롤 허용, 가로 스와이프만 캐러셀 처리 */
}

#coreValuesCarousel .carousel-inner {
    padding-top: 3.6rem;
    overflow: visible;
}

#coreValuesCarousel .carousel-indicators,
#howItWorksCarousel .carousel-indicators {
    position: relative;
    bottom: 0;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

#coreValuesCarousel .carousel-indicators button,
#howItWorksCarousel .carousel-indicators button {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--form-border);
    border: none;
    opacity: 1;
    margin: 0 0.25rem;
}

#coreValuesCarousel .carousel-indicators button.active,
#howItWorksCarousel .carousel-indicators button.active {
    background-color: var(--text-subtitle);
}

/* 캐러셀 포커스 outline 제거 */
#coreValuesCarousel:focus,
#howItWorksCarousel:focus {
    outline: none;
}

/* ============================================
   Employer Table
   ============================================ */
.employer-table-wrapper {
    max-width: 100%;  /* 컨테이너 폭에 맞춤 */
    margin: 0 auto;
    overflow-x: auto;
}

.employer-table {
    width: 100%;
    max-width: 100%;  /* 래퍼 폭에 맞춤 */
    min-height: 16.875rem;  /* 270px */
    border-collapse: collapse;
    background: var(--baro-white);
    border: none;
}

.employer-table thead {
    background: var(--baro-soft-gray);
}

.employer-table th {
    padding: var(--spacing-md);
    text-align: center;
    font-weight: 600;
    color: var(--text-title);
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);  /* 18px ~ 20px */
    border: none;
}

.employer-table td {
    padding: var(--spacing-md);
    text-align: center;
    color: var(--text-subtitle);
    font-size: clamp(1rem, 1.2vw, 1.125rem);  /* 16px ~ 18px */
    border: none;
}

.employer-table tbody tr:nth-child(odd) {
    background: var(--baro-white);
}

.employer-table tbody tr:nth-child(even) {
    background: var(--baro-soft-gray);
}

/* ============================================
   How It Works - Steps
   ============================================ */

.card-base.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 321px;
    width: 100%;
    height: 385px;
    margin: 0 auto;
}

.card-base.step-card img {
    object-fit: contain;
    margin-bottom: var(--spacing-lg);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--baro-blue);
    margin-bottom: var(--spacing-xs);
}

.step-description {
    font-size: 18px;
    color: var(--text-subtitle);
    margin: 0;
}

.btn.btn-outline-primary {
    width: 166px;
    height: 40px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 980px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    border: 1px solid #0071E3;
    color: #0071E3;
}

.btn.btn-outline-primary:hover {
    background-color: #F0F8FF;
    color: #0071E3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.1);
}

/* ============================================
   Contact Section
   ============================================ */
#contact {
    min-height: 46rem;  /* 736px - 데스크톱 고정 높이 */
    display: flex;
    align-items: center;  /* 섹션 내부 수직 중앙 정렬 */
}

.contact-left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* 컬럼 내부 콘텐츠 상단 정렬 */
    align-self: flex-start;  /* 컬럼 자체를 row 내에서 상단 배치 */
}

.contact-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: 18px;
    color: var(--text-subtitle);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xs);
}

.contact-info {
    margin-top: var(--spacing-md);
}

.contact-email,
.contact-phone {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2xs);
    font-weight: 500;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;  /* 오른쪽 컬럼에 꽉 차도록 */
    width: 100%;
    margin: 0;  /* auto 제거 */
}

.form-label {
    color: var(--text-subtitle);
    font-weight: 500;
    margin-bottom: 0.5rem;  /* 8px */
    font-size: 1rem;  /* 16px */
    display: block;
}

.form-control {
    border: 1px solid var(--form-border);
    border-radius: 0;
    padding: 0.75rem 1rem;  /* 12px 16px */
    font-size: 1rem;  /* 16px */
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    background: transparent;
}

/* Input 필드 높이 (Name, Email) */
input.form-control {
    height: 3.9rem;  /* 62.4px */
}

.form-control::placeholder {
    color: var(--text-subtitle);
    font-weight: 600;  /* bold */
}

.form-control:focus {
    border-color: var(--baro-blue);
    box-shadow: none;
    outline: none;
    background: transparent;
}

.contact-form .btn-primary {
    background-color: var(--baro-blue);
    color: var(--baro-white);
    border: none;
    border-radius: 980px;
    height: 2.5rem;  /* 40px */
    font-size: 1rem;  /* 16px */
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .btn-primary:hover {
    background-color: var(--baro-blue-hover);
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--baro-blue);
}


/* ============================================
   Footer
   ============================================ */
footer {
    background-color: var(--baro-white);
    border-top: 1px solid var(--border-gray);
    height: 99px;
    display: flex;
    align-items: center;
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo-img {
    height: 2.5rem;  /* 40px - header와 동일 */
    width: auto;
    max-width: 180px;  /* header와 동일 */
}

.footer-nav {
    gap: var(--spacing-md);
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

.footer-links {
    margin-top: var(--spacing-lg);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    margin: 0 var(--spacing-xs);
}

.footer-link:hover {
    color: var(--baro-blue);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--baro-blue);
    color: var(--baro-white);
}

.btn-primary:hover {
    background-color: var(--baro-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
    color: var(--baro-white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

/* ============================================
   Modal
   ============================================ */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--border-gray);
    padding: var(--spacing-md);
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-body h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   Utility Classes
   ============================================ */
.bg-baro-soft-gray {
    background-color: var(--baro-soft-gray);
}

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

/* 모바일 전용 줄바꿈 - 데스크탑에서는 숨김 */
.mobile-br {
    display: none;
}

/* ============================================
   Media Queries - Responsive Design
   ============================================ */

/* Desktop (993px 이상) - 카드 가로 배치 */
@media (min-width: 993px) {
    #core-values .row,
    #how-it-works .row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: var(--spacing-lg);  /* 48px 고정 */
        margin-left: 0;
        margin-right: 0;
    }

    #core-values .col-md-3,
    #how-it-works .col-md-3 {
        flex: 0 0 auto;  /* 원래대로 auto */
        width: auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Tablet & Mobile (992px 이하) */
@media (max-width: 992px) {
    /* Core Values 타이틀 margin-bottom 제거 */
    #core-values .section-title {
        margin-bottom: 0;
    }

    #core-values .value-card {
        width: 100%;
        max-width: 18.75rem;  /* 300px */
        margin: 0 auto;
    }

    #how-it-works .step-card {
        width: 100%;
        max-width: 20.063rem;  /* 321px */
        margin: 0 auto;
    }

    /* Contact Section - 중앙 정렬 */
    #contact .row {
        justify-content: center;
    }

    #contact .col-lg-6 {
        max-width: 580px;
    }

    #contact .container {
        padding: 0 var(--spacing-md);
    }

    .contact-left-column {
        margin-bottom: var(--spacing-md);
    }

    .contact-title {
        text-align: center;
    }

    .contact-description {
        text-align: center;
    }

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

/* Tablet and below - Navbar toggler layout (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
    /* Navigation - 토글 버튼 왼쪽, 로고 중앙, Start My Journey 오른쪽 배치 */
    .navbar {
        height: 3.625rem;
    }

    .navbar .container {
        height: 3.625rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        flex-wrap: nowrap;
    }

    .navbar-toggler {
        flex-shrink: 0;
        z-index: 20;
        position: relative;
    }

    .navbar-brand {
        position: absolute;
        left: 4rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        pointer-events: none;
        z-index: 10;
    }

    .navbar-brand .logo {
        height: 35px;
        max-width: 150px;
    }

    .navbar-btn {
        margin-left: auto;
        min-width: auto;
        height: 40px;
        padding: 6px 14px;
        font-size: 14px;
        z-index: 20;
        position: relative;
    }

    .navbar-collapse {
        position: absolute;
        top: 3.625rem;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - var(--spacing-sm) * 2);
        padding: var(--spacing-sm) 0;
        background: var(--baro-white);
        box-shadow: 0 12px 24px rgba(15, 58, 92, 0.08);
        border-radius: 16px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
        margin-top: 0;
    }

    .navbar-nav .nav-link {
        padding: var(--spacing-sm);
    }
}

/* Mobile (max-width: container-mobile) */
@media (max-width: 430px) { /* 430px = var(--container-mobile) */
    /* 모바일 전용 줄바꿈 보이기 */
    .mobile-br {
        display: inline;
    }

    /* 가로 스크롤 방지 */
    html {
        overflow-x: hidden;
    }

    /* Body - 적응형 */
    body {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

    /* Container */
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 var(--spacing-sm);
    }

    [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .floating-home-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero Section - 배경 이미지를 텍스트 아래로 */
    .hero-section {
        padding: var(--spacing-xl) var(--spacing-sm);
        height: auto;
        background: var(--baro-white);
        flex-direction: column;
        align-items: center;
        padding-top: 120px; /* 네비게이션바 높이만큼 여백 */
        justify-content: flex-start;
        margin-top: 0;
    }

    .hero-section::before {
        position: relative;
        order: 2;
        display: block;
        width: 100%;
        flex: none;
        aspect-ratio: 430 / 225;
        background-image: url('/static/images/hero-illustration-mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: var(--spacing-lg);
    }

    .hero-section .container {
        order: 1;
        margin-bottom: var(--spacing-md);
        z-index: 1;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 1.3;
        white-space: normal;
    }

    .hero-section .hero-subtitle {
        font-size: 16px;
    }

    .hero-section .hero-cta {
        flex-direction: row;
        gap: var(--spacing-sm);
        justify-content: center;
    }

    .hero-section .btn-lg {
        flex: 1;
        max-width: 166px;
    }

    /* Core Values Section */
    #core-values {
        height: auto;
        min-height: 510px;
    }

    #core-values .section-title {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        margin-bottom: 0;
    }

    /* Services Section */
    #services {
        height: 524px;
    }

    /* How It Works Section */
    #how-it-works {
        height: 693px;
    }

    #how-it-works .section-title {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    /* About Section */
    #about {
        height: 466px;
    }

    /* Contact Section */
    #contact {
        min-height: auto;  /* 모바일에서는 자동 높이 */
        height: auto;
    }

    #contact .container {
        padding: 0 var(--spacing-md);  /* 24px - 모바일 좌우 여백 */
    }

    .contact-left-column {
        margin-bottom: 0;
    }

    .contact-title {
        text-align: center;
    }

    .contact-description {
        text-align: center;
    }

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

    .contact-link {
        font-size: 11px;
    }

    /* Employer Table - 모바일 최적화 */
    #services .container {
        padding-left: 0;
        padding-right: 0;
    }

    .employer-table-wrapper {
        max-width: 100%;
        overflow-x: auto;
    }

    .employer-table {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    /* About Section */
    .about-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Contact Form */
    .contact-form {
        max-width: 100%;
        width: 100%;
        margin-top: var(--spacing-lg);  /* 설명과 폼 사이 간격 */
    }

    .form-control {
        width: 100%;
        max-width: 100%;
    }

    .contact-email,
    .contact-phone {
        font-size: 16px;  /* 모바일에서 약간 작게 */
    }

    /* Typography */
    .section-title {
        font-size: 28px;
    }

    .employer-table th,
    .employer-table td {
        padding: 8px;
        font-size: 14px;
    }

    /* Footer */
    footer {
        height: auto;  /* 높이 자동 조정 */
        padding: var(--spacing-md) 0;  /* 상하 여백 추가 */
    }

    footer .container {
        padding: 0 var(--spacing-md);  /* 24px - 모바일 좌우 여백 */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);  /* 요소 간 간격 추가 */
    }

    .footer-logo-img {
        height: 35px;  /* 모바일에서 적당한 크기 */
        max-width: 130px;
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Toast Notifications */
.toast-header.bg-baro-blue {
    background-color: var(--baro-blue);
    color: var(--baro-white);
}

.toast-header.bg-baro-blue .btn-close {
    filter: brightness(0) invert(1);
}
