body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.container {
    width: 100vw;
    height: 100vh;
    background-color: #F6F9FC;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content-wrapper {
    padding: 0 16px;
    width: 100%;
    max-width: 375px;
    box-sizing: border-box;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

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

.text-container {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    display: flex;
}

.main-title {
    color: #181D27;
    font-size: 24px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 32px;
    word-wrap: break-word;
}

.description {
    width: 100%;
    text-align: center;
    color: #4E535D;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.info-box {
    box-sizing: border-box;
    width: 100%;
    padding: 24px;
    background: #EBF1F7;
    overflow: hidden;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: flex;
}

.info-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    display: inline-flex;
}

.info-label {
    display: flex;
    text-align: center;
    color: #717680;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
    min-width: 60px;
}

.bullet {
    margin-right: 5px;
    color: #717680;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.info-value {
    text-align: center;
    color: #393E49;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}
