html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard';
    color: #192343;
    background: #fff;
    word-break: keep-all;
    overflow-wrap: break-word;
    min-width: 1200px;
}

* {
    box-sizing: border-box;
}

.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 90px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-left {
    flex: 0 0 260px;
    min-height: 560px;
    padding: 8px 28px 0 0;
    border-right: 1px solid rgba(25, 35, 67, .12);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-menu a {
    position: relative;
    display: block;
    padding: 11px 0 11px 16px;
    color: rgba(25, 35, 67, .78);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: .2s ease;
}

.about-menu a:hover {
    color: #45B6B0;
    background: rgba(69, 182, 176, .08);
}

.about-menu a.active {
    color: #45B6B0;
    font-weight: 700;
    background: rgba(69, 182, 176, .1);
    pointer-events: none;
}

.about-menu a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 99px;
    background: #45B6B0;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-title {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(25, 35, 67, .45);
}

.link-box {
    width: 190px;
    height: 74px;
    padding: 14px;
    border: 1px solid rgba(25, 35, 67, .12);
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.link-box img {
    width: 100%;
    height: 150%;
    object-fit: contain;
    display: block;
}

.about-right {
    flex: 1;
    max-width: 820px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #45B6B0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.guide-header {
    margin-bottom: 40px;
}

.guide-header h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: #192343;
}

.guide-header p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(25, 35, 67, .62);
}

.process-list {
    border: 1px solid rgba(25, 35, 67, .08);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.process-row {
    display: grid;
    grid-template-columns: 230px 1fr;
    border-bottom: 1px solid rgba(25, 35, 67, .08);
}

.process-row:last-child {
    border-bottom: 0;
}

.process-left {
    padding: 28px;
    background: #F8FAFB;
    border-right: 1px solid rgba(25, 35, 67, .08);
}

.process-left span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #45B6B0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 14px;
}

.process-left h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.process-right {
    display: flex;
    align-items: center;
    padding: 28px 32px;
}

.process-right p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(25, 35, 67, .72);
}

.guide-notice {
    margin-top: 24px;
    padding: 20px;
    border-radius: 14px;
    background: #F8FAFB;
    border: 1px solid rgba(25, 35, 67, .08);
    text-align: center;
    font-size: 15px;
    color: rgba(25, 35, 67, .72);
}

.guide-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    border-radius: 10px;
    border: 1px solid rgba(25, 35, 67, .12);
    background: #fff;
    color: #192343;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.guide-btn.primary {
    background: #45B6B0;
    border-color: #45B6B0;
    color: #fff;
}