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

      html {
        background-color: #a38eca ;
      }

      body {
        font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif ;
        background-color: #a38eca ;
        color: #000000 ;
        min-height: 100vh;
        overflow-x: hidden ;
      }

      #fixedBottom {
        display: none ;
      }

      /* 브레드크럼 숨김 */
      .breadcrumbs,
      .breadcrumb,
      #page-heading {
        display: none ;
      }

      /* 상위 컨테이너 제한 해제 */
      .container {
        width: 100%;
        padding-top: 0;
      }

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

      .landing.study-abroad {
        overflow-x: visible;
        margin: 0;
        padding: 0;
        max-width: none;
      }

      /* 타이포그래피 시스템 */
      .typo-h2 {
        font-family: "Pretendard", sans-serif;
        font-size: 40px;
        font-weight: 700;
        line-height: 48px;
        color: #1a1f29;
      }

      .typo-h3 {
        font-family: "Pretendard", sans-serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 33px;
        color: #1a1f29;
      }

      /* 히어로 섹션 - 유학편입 컬러 */
      .hero-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background-color: #a38eca;
        padding: 100px 0 80px;
        text-align: center;
        box-sizing: border-box;
        overflow: visible;
      }

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

      .hero-image {
        width: 100%;
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
        display: block;
        border-radius: 16px;
      }

      /* 히어로 하단 박스 - 보더 있는 회색 반투명 */
      .hero-boxes {
        display: flex;
        justify-content: center;
        gap: 20px;
        max-width: 720px;
        margin: 0 auto;
      }

      .hero-box {
        flex: 1;
        max-width: 340px;
        background: rgba(45, 48, 58, 0.5);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        padding: 20px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .hero-box:hover {
        background: rgba(55, 58, 70, 0.85);
        border-color: rgba(255, 255, 255, 0.18);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      }

      .hero-box-emoji {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 16px;
      }
      .hero-box-emoji img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .hero-box-text {
        flex: 1;
        min-width: 0;
      }

      .hero-box-title {
        font-family: "Pretendard", sans-serif;
        font-size: 17px;
        font-weight: 700;
        color: #e8eaed;
        margin-bottom: 4px;
        line-height: 1.35;
        letter-spacing: -0.02em;
      }

      .hero-box-desc {
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 400;
        color: #b8bcc4;
        line-height: 1.5;
        margin: 0;
        letter-spacing: -0.01em;
      }

      /* 로드맵 섹션 */
      .roadmap-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background-color: #ffffff;
        padding: 100px 0;
      }

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

      .roadmap-header {
        text-align: center;
        margin-bottom: 56px;
      }

      .roadmap-title {
        font-family: "Pretendard", sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #1a1f29;
        line-height: 1.3;
        letter-spacing: -0.02em;
      }

      .roadmap-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .roadmap-card {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 28px 22px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        border: 1px solid transparent;
      }

      .roadmap-card:hover {
        background: #ffffff;
        border-color: rgba(163, 142, 202, 0.3);
        box-shadow: 0 12px 32px rgba(163, 142, 202, 0.15);
        transform: translateY(-4px);
      }

      .roadmap-card-prefix {
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #8b7cb8;
        margin-bottom: 6px;
        letter-spacing: -0.01em;
      }

      .roadmap-card-title {
        font-family: "Pretendard", sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #1a1f29;
        margin-bottom: 12px;
        line-height: 1.3;
        letter-spacing: -0.02em;
      }

      .roadmap-card-title .highlight {
        color: #7b6ba8;
      }

      .roadmap-card-desc {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #6b7684;
        line-height: 1.6;
        margin: 0;
        letter-spacing: -0.01em;
      }

      .roadmap-card-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-family: "Pretendard", sans-serif;
        font-size: 48px;
        font-weight: 800;
        color: rgba(163, 142, 202, 0.1);
        line-height: 1;
      }

      /* 과목-자격증 연결 섹션 */
      .mapping-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background: #f5f2fa;
        padding: 100px 0;
      }

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

      .mapping-title-wrap {
        max-width: 900px;
        margin: 0 auto 56px;
        padding: 0 20px;
        text-align: center;
      }

      .mapping-section-title {
        font-family: "Pretendard", sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #6b7684;
        letter-spacing: -0.01em;
        line-height: 1.7;
        margin-bottom: 16px;
      }

      .mapping-section-title-highlight {
        display: block;
        font-family: "Pretendard", sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #1a1f29;
        letter-spacing: -0.02em;
        line-height: 1.4;
        margin-top: 8px;
      }

      .mapping-section-title-highlight .accent {
        color: #6b4ba8;
        position: relative;
      }

      .mapping-section-title-highlight .accent::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 0;
        right: 0;
        height: 8px;
        background: rgba(163, 142, 202, 0.25);
        z-index: -1;
      }

      .mapping-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 20px;
      }

      .mapping-header-label {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #8b95a1;
        letter-spacing: -0.01em;
      }

      .mapping-header-label:last-child {
        color: #8b6dc4;
      }

      .mapping-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .mapping-row {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        background: #f9fafb;
        border-radius: 16px;
        transition: all 0.2s ease;
      }

      .mapping-row:hover {
        background: #f3f0fa;
      }

      .mapping-subjects {
        flex: 1;
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #4e5968;
        line-height: 1.4;
      }

      .mapping-arrow {
        flex-shrink: 0;
        color: #8b6dc4;
      }

      .mapping-arrow svg {
        width: 20px;
        height: 20px;
        display: block;
      }

      .mapping-cert {
        flex: 1;
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #6b4ba8;
        line-height: 1.4;
        text-align: right;
      }

      /* 자격증 종류 섹션 */
      .cert-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background: #ffffff;
        padding: 100px 0;
      }

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

      .cert-section-title {
        font-family: "Pretendard", sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1a1f29;
        letter-spacing: -0.02em;
        text-align: center;
        margin-bottom: 48px;
      }

      .cert-table-wrapper {
        overflow-x: auto;
        border-radius: 16px;
        border: 1px solid #e5e8eb;
        margin-bottom: 0;
      }

      .cert-table {
        width: 100%;
        border-collapse: collapse;
        font-family: "Pretendard", sans-serif;
        border-bottom: 0;
        border-top: 0;
      }

      .cert-table thead tr {
        background: #f8f9fa;
        border-bottom: 0;
      }

      .cert-table th {
        padding: 16px 12px;
        font-size: 13px;
        font-weight: 600;
        color: #6b7684 ;
        text-align: center ;
        border-bottom: 1px solid #e5e8eb ;
        white-space: nowrap;
        border-right: 0 ;
        background: #f8f9fa ;
      }

      .cert-table td {
        padding: 16px 12px;
        font-size: 14px;
        font-weight: 400;
        color: #4e5968;
        border-bottom: 1px solid #f2f4f6;
        vertical-align: middle;
        text-align: center;
      }

      .cert-table tr {
        border-bottom: 0;
      }

      .cert-table tbody tr:last-child td {
        border-bottom: none;
      }

      .cert-table tbody tr:hover {
        background: #f9fafb;
      }

      .cert-table .cert-name {
        font-weight: 600;
        color: #1a1f29;
      }

      .cert-table .btn-view {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        background: #f3f0fa;
        color: #6b4ba8;
        font-size: 13px;
        font-weight: 600;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .cert-table .btn-view:hover {
        background: #6b4ba8;
        color: #ffffff;
      }

      /* 발급절차 섹션 */
      .process-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background: #f5f2fa;
        padding: 100px 0;
      }

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

      .process-section-title {
        font-family: "Pretendard", sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1a1f29;
        letter-spacing: -0.02em;
        text-align: center;
        margin-bottom: 64px;
      }

      .process-steps {
        display: flex;
        gap: 12px;
      }

      .process-step {
        flex: 1;
        background: #ffffff;
        border-radius: 20px;
        padding: 28px 22px 32px;
        text-align: left;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      }

      .process-step:hover {
        border-color: rgba(107, 75, 168, 0.2);
        box-shadow: 0 12px 32px rgba(107, 75, 168, 0.14);
        transform: translateY(-6px);
      }

      .process-step-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }
      .process-step-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .process-step-num {
        display: inline-block;
        background: linear-gradient(135deg, #6b4ba8 0%, #9b7ed4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 12px;
      }

      .process-step-title {
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #1a1f29;
        line-height: 1.4;
        margin: 0 0 10px 0;
      }

      .process-step-desc {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #6b7684;
        line-height: 1.7;
        margin: 0;
      }

      .process-arrow-deprecated {
        flex-shrink: 0;
        width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8b6dc4;
      }

      .process-arrow svg {
        width: 28px;
        height: 28px;
      }

      @media (max-width: 1024px) {
        .process-steps {
          flex-wrap: wrap;
          gap: 16px;
        }
        .process-step {
          flex: 1 1 calc(50% - 8px);
          min-width: 260px;
        }
      }
      @media (max-width: 640px) {
        .process-section {
          padding: 60px 0;
        }
        .process-section-title {
          font-size: 22px;
          margin-bottom: 40px;
        }
        .process-steps {
          flex-direction: column;
          gap: 12px;
        }
        .process-step {
          flex: 1 1 auto;
          min-width: 0;
          padding: 24px 20px 28px;
        }
        .process-step-title {
          font-size: 15px;
        }
        .process-step-desc {
          font-size: 13px;
        }
      }

      /* 모달 */
      .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        align-items: center;
        justify-content: center;
      }

      .modal-overlay.active {
        display: flex;
      }

      .modal-content {
        background: #ffffff;
        border-radius: 20px;
        width: 100%;
        max-width: 480px;
        margin: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        animation: modalIn 0.2s ease;
      }

      @keyframes modalIn {
        from {
          opacity: 0;
          transform: scale(0.95) translateY(10px);
        }
        to {
          opacity: 1;
          transform: scale(1) translateY(0);
        }
      }

      .modal-header {
        padding: 24px 28px 20px;
        border-bottom: 1px solid #f2f4f6;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .modal-title {
        font-family: "Pretendard", sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #1a1f29;
        margin: 0;
      }

      .modal-close {
        width: 32px;
        height: 32px;
        border: none;
        background: #f2f4f6;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
      }

      .modal-close:hover {
        background: #e5e8eb;
      }

      .modal-close svg {
        width: 18px;
        height: 18px;
        color: #6b7684;
      }

      .modal-body {
        padding: 24px 28px 28px;
      }

      .modal-info-row {
        display: flex;
        margin-bottom: 16px;
      }

      .modal-info-row:last-child {
        margin-bottom: 0;
      }

      .modal-info-label {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #8b95a1;
        width: 80px;
        flex-shrink: 0;
      }

      .modal-info-value {
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #1a1f29;
        line-height: 1.6;
      }

      .modal-info-value.description {
        color: #4e5968;
        font-weight: 400;
      }

      /* 혜택 섹션 */
      .benefits-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background: url("https://it.livestudy.com/files/images/202602/29a36235-266c-4e35-a043-cb0a6e43ea1d.webp") center
          center / cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .benefits-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 20px 60px 20px;
        text-align: center;
      }

      .benefits-image {
        width: 100%;
        max-width: 900px;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 16px;
      }

      .benefits-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 20px 56px;
        background: #1a1f29;
        color: #ffffff;
        font-family: "Pretendard", sans-serif;
        font-size: 20px;
        font-weight: 800;
        border: none;
        border-radius: 60px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      }

      .benefits-button:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        background: #000000;
        color: #ffffff;
      }

      /* 자격증 필수 정보 섹션 */
      .info-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background: #f8f9fa;
        padding: 100px 0;
      }

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

      .info-section-title {
        font-family: "Pretendard", sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1a1f29;
        letter-spacing: -0.02em;
        text-align: center;
        margin-bottom: 48px;
      }

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

      .info-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 28px;
        border: 1px solid #e5e8eb;
      }

      .info-card-title {
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #6b4ba8;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f2f4f6;
      }

      .info-card-row {
        display: flex;
        margin-bottom: 10px;
      }

      .info-card-row:last-child {
        margin-bottom: 0;
      }

      .info-card-label {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #8b95a1;
        width: 120px;
        flex-shrink: 0;
      }

      .info-card-value {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #1a1f29;
        line-height: 1.5;
      }

      .info-card-value a {
        color: #6b4ba8;
        text-decoration: none;
      }

      .info-card-value a:hover {
        text-decoration: underline;
      }

      .info-notice {
        background: #ffffff;
        border-radius: 16px;
        padding: 28px;
        border: 1px solid #e5e8eb;
        margin-bottom: 32px;
      }

      .info-notice-title {
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 16px;
      }

      .info-notice-text {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #4e5968;
        line-height: 1.7;
        margin: 0;
      }

      .info-button-wrap {
        text-align: center;
      }

      .info-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 32px;
        background: #6b4ba8;
        color: #ffffff;
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 12px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .info-button:hover {
        background: #5a3d91;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(107, 75, 168, 0.3);
        color: #ffffff;
      }

      .info-button svg {
        width: 18px;
        height: 18px;
      }

      /* FAQ 섹션 */
      .faq-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        padding: 100px 0 200px;
        background-color: #a38eca;
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 40px;
      }

      .faq-header {
        text-align: left;
        margin-bottom: 64px;
      }

      .faq-title {
        margin-bottom: 0;
        font-size: 28px;
        color: #ffffff;
      }

      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .faq-item {
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid transparent;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .faq-item:hover {
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(107, 75, 168, 0.15);
      }

      .faq-question {
        width: 100%;
        padding: 24px 28px;
        background-color: transparent;
        border: none;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: "Pretendard", sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: #1a1f29;
        transition: color 0.2s ease;
        line-height: 1.6;
      }

      .faq-question:hover {
        color: #6b4ba8;
      }

      .faq-question span:first-child {
        display: inline-block;
        line-height: 1.6;
      }

      .faq-question span:first-child::first-letter {
        display: inline-block;
        color: #6b4ba8;
        font-size: 22px;
        font-weight: 700;
        margin-right: 4px;
        vertical-align: baseline;
      }

      .faq-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #828c9c;
        font-size: 20px;
        font-weight: 700;
        transition: transform 0.3s ease, color 0.3s ease;
        flex-shrink: 0;
        margin-left: 16px;
      }

      .faq-item.active {
        background-color: #ffffff;
        border: 1px solid #c4b5e0;
        box-shadow: 0 4px 16px rgba(107, 75, 168, 0.2);
      }

      .faq-item.active .faq-question {
        color: #6b4ba8;
      }

      .faq-item.active .faq-question span:first-child::first-letter {
        color: #5a3d91;
      }

      .faq-item.active .faq-icon {
        color: #6b4ba8;
        transform: rotate(45deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 28px;
      }

      .faq-item.active .faq-answer {
        max-height: 1000px;
        padding: 0 28px 24px 28px;
      }

      .faq-answer-content {
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        line-height: 1.8;
        color: #4f5969;
        padding-top: 20px;
        padding-left: 8px;
        position: relative;
      }

      .faq-answer-content::first-letter {
        display: inline-block;
        color: #6b4ba8;
        font-size: 20px;
        font-weight: 700;
        margin-right: 6px;
        vertical-align: baseline;
      }

      .faq-item.active .faq-answer-content {
        padding-left: 8px;
      }

      .faq-inquiry {
        text-align: center;
        margin-top: 56px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
      }

      .faq-inquiry-text {
        font-family: "Pretendard", sans-serif;
        font-size: 17px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        margin: 0 0 20px 0;
      }

      .faq-inquiry-button {
        display: inline-block;
        padding: 16px 40px;
        background: #334155;
        color: #ffffff;
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
      }

      .faq-inquiry-button:hover {
        background: #475569;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(51, 65, 85, 0.25);
        color: #ffffff;
      }

      /* 탭 네비게이션 */
      .tab-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: #ffffff;
        border-bottom: 1px solid #e5e8eb;
        position: relative;
        z-index: 100;
        transition: box-shadow 0.2s ease;
      }

      .tab-section.fixed {
        position: fixed;
        top: 50px;
        left: 0;
        margin-left: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .tab-section-placeholder {
        display: none;
      }

      .tab-section-placeholder.active {
        display: block;
      }

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

      .tab-nav {
        display: flex;
        gap: 0;
      }

      .tab-button {
        flex: 1;
        padding: 20px 32px;
        background: transparent;
        border: none;
        font-family: "Pretendard", sans-serif;
        font-size: 17px;
        font-weight: 600;
        color: #8b95a1;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
      }

      .tab-button:hover {
        color: #6b4ba8;
      }

      .tab-button.active {
        color: #6b4ba8;
      }

      .tab-button::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #6b4ba8;
        transform: scaleX(0);
        transition: transform 0.2s ease;
      }

      .tab-button.active::after {
        transform: scaleX(1);
      }

      /* 탭 콘텐츠 */
      .tab-content {
        display: none;
      }

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

      .tab-content-placeholder {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background: #f8f9fa;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .tab-content-placeholder-text {
        font-family: "Pretendard", sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #8b95a1;
      }
      /* ========== 신청/조회 탭 ========== */
      .apply-section {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        background: #f8f9fa;
        padding: 80px 0;
      }

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

      .apply-title {
        font-family: "Pretendard", sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1a1f29;
        text-align: center;
        margin-bottom: 40px;
      }

      .apply-login-box {
        background: #ffffff;
        border-radius: 16px;
        padding: 60px 40px;
        text-align: center;
        border: 1px solid #e5e8eb;
      }

      .apply-login-text {
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        color: #6b7684;
        margin-bottom: 24px;
      }

      .btn-login-apply {
        display: inline-block;
        padding: 14px 40px;
        background: #6b4ba8;
        color: #ffffff;
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 600;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s ease;
      }

      .btn-login-apply:hover {
        background: #5a3d91;
        color: #ffffff;
      }

      /* 자격증 선택 카드 */
      .cert-select-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        border: 1px solid #e5e8eb;
        margin-bottom: 24px;
      }

      /* 토글 스위치 */
      .toggle-switch {
        position: relative;
        width: 44px;
        height: 24px;
        flex-shrink: 0;
      }
      .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
      }
      .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #ccc;
        border-radius: 24px;
        transition: 0.3s;
      }
      .toggle-slider:before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background: #fff;
        border-radius: 50%;
        transition: 0.3s;
      }
      .toggle-switch input:checked + .toggle-slider {
        background: #5B4ACF;
      }
      .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(20px);
      }

      .cert-select-title {
        font-family: "Pretendard", sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #1a1f29;
        margin-bottom: 20px;
      }

      .cert-radio-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .cert-radio-item {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        border: 1px solid #e5e8eb;
        border-radius: 12px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .cert-radio-item:hover {
        border-color: #6b4ba8;
        background: #faf8fd;
      }

      .cert-radio-item.selected {
        border-color: #6b4ba8;
        background: #f5f2fa;
      }

      .cert-radio-item input[type="radio"] {
        margin-right: 14px;
        accent-color: #6b4ba8;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
      }

      .cert-radio-info {
        flex: 1;
      }

      .cert-radio-name {
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #1a1f29;
      }

      .cert-radio-price {
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #6b4ba8;
        flex-shrink: 0;
      }

      .cert-radio-price .original {
        text-decoration: line-through;
        color: #8b95a1;
        font-weight: 400;
        font-size: 13px;
        margin-right: 8px;
      }

      .btn-apply-submit {
        display: block;
        width: 100%;
        padding: 16px 0;
        background: #6b4ba8;
        color: #ffffff;
        font-family: "Pretendard", sans-serif;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-top: 16px;
      }

      .btn-apply-submit:hover {
        background: #5a3d91;
      }

      .btn-apply-submit:disabled {
        background: #d1d5db;
        cursor: not-allowed;
      }

      /* 신청/발급 내역 */
      .history-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        border: 1px solid #e5e8eb;
      }

      .history-title {
        font-family: "Pretendard", sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #1a1f29;
        margin-bottom: 20px;
      }

      /* 유의사항 */
      .notice-card {
        background: #f8f9fa;
        border: 1px solid #e5e8eb;
        border-radius: 16px;
        padding: 28px 24px;
        margin-top: 24px;
      }
      .notice-card-title {
        font-family: "Pretendard", sans-serif;
        font-size: 17px;
        font-weight: 700;
        color: #1a1f29;
        margin-bottom: 20px;
      }
      .notice-section {
        margin-bottom: 18px;
      }
      .notice-section:last-child {
        margin-bottom: 0;
      }
      .notice-section-title {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #6b4ba8;
        margin-bottom: 8px;
      }
      .notice-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .notice-section li {
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        color: #4e5968;
        line-height: 1.7;
        padding-left: 12px;
        position: relative;
      }
      .notice-section li::before {
        content: "·";
        position: absolute;
        left: 0;
        color: #8b95a1;
        font-weight: 700;
      }
      .notice-contact {
        font-size: 13px;
        color: #6b7684;
      }
      .notice-contact a {
        color: #6b4ba8;
        text-decoration: none;
        font-weight: 600;
      }

      .history-empty {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        color: #8b95a1;
        text-align: center;
        padding: 32px 0;
      }

      .history-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border: 1px solid #f2f4f6;
        border-radius: 12px;
        margin-bottom: 10px;
      }

      .history-item:last-child {
        margin-bottom: 0;
      }

      .history-item-info {
        flex: 1;
      }

      .history-item-name {
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #1a1f29;
      }

      .history-item-date {
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        color: #8b95a1;
        margin-top: 4px;
      }

      .history-item-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }

      .history-item-status {
        display: inline-flex;
        align-items: center;
        padding: 6px 14px;
        border-radius: 20px;
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 600;
      }

      .status-waiting {
        background: #fff8e1;
        color: #f59e0b;
      }

      .status-approved {
        background: #e8f5e9;
        color: #4caf50;
      }

      .status-issued {
        background: #f3f0fa;
        color: #6b4ba8;
      }

      .status-cancelled {
        background: #ffeef0;
        color: #ef4444;
      }

      .btn-issue {
        padding: 8px 20px;
        background: #6b4ba8;
        color: #ffffff;
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .btn-issue:hover {
        background: #5a3d91;
      }

      .btn-cancel {
        padding: 8px 16px;
        background: #fff;
        color: #ef4444;
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 600;
        border: 1px solid #ef4444;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
      }
      .btn-cancel:hover {
        background: #fef2f2;
      }

      /* 수료 확인 모달 */
      .subject-list {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
      }

      .subject-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        border: 1px solid #f2f4f6;
        border-radius: 10px;
        margin-bottom: 8px;
      }

      .subject-item:last-child {
        margin-bottom: 0;
      }

      .subject-name {
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #1a1f29;
      }

      .subject-status {
        font-family: "Pretendard", sans-serif;
        font-size: 14px;
        font-weight: 700;
      }

      .subject-status.pass {
        color: #4caf50;
      }

      .subject-status.fail {
        color: #ef4444;
      }

      .eligibility-message {
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        line-height: 1.6;
        color: #4e5968;
        text-align: center;
        padding: 16px 0;
      }

      .eligibility-message.success {
        color: #4caf50;
      }

      .eligibility-message.fail {
        color: #ef4444;
      }

      .modal-footer {
        padding: 0 28px 28px;
        display: flex;
        gap: 12px;
        justify-content: center;
      }

      .btn-modal-action {
        padding: 12px 32px;
        font-family: "Pretendard", sans-serif;
        font-size: 15px;
        font-weight: 600;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .btn-modal-action.secondary {
        background: #f2f4f6;
        color: #4e5968;
      }

      .btn-modal-action.secondary:hover {
        background: #e5e8eb;
      }

      .btn-modal-action.primary {
        background: #6b4ba8;
        color: #ffffff;
      }

      .btn-modal-action.primary:hover {
        background: #5a3d91;
      }

      .btn-modal-action:disabled {
        background: #d1d5db;
        cursor: not-allowed;
      }

      @media (max-width: 640px) {
        .apply-section {
          padding: 48px 0;
        }
        .apply-title {
          font-size: 22px;
          margin-bottom: 28px;
        }
        .cert-select-card,
        .history-card {
          padding: 20px;
          border-radius: 12px;
        }
        .cert-radio-item {
          padding: 14px 16px;
        }
        .history-item {
          flex-direction: column;
          align-items: flex-start;
          gap: 12px;
        }
      }
